/* ============================================================================
   /ai-watch — the AI Watch product page.
   Loads after landing-rebuild.css and reuses its tokens (--def-*). Everything
   here is scoped to .aiw-* so it cannot leak into the homepage or the app.
   Design canvas: 1180px content column inside a 1440px viewport.
   ========================================================================== */

.aiw-page {
  --aiw-w: 1180px;
  --aiw-deep: #0a2527;
  --aiw-deep-2: #103436;
  --aiw-deep-line: #1d4749;
  --aiw-deep-ink: #eef4f0;
  --aiw-deep-muted: #9fb9b6;
  --aiw-card: #fffefa;
  --aiw-gap: 26px;
}

.aiw-wrap {
  width: min(var(--aiw-w), calc(100% - 48px));
  margin-inline: auto;
}

/* app.css is deliberately NOT loaded here (it would drag in the classic shell
   and the def-skin remap), so the one utility the nav needs lives locally. */
.aiw-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* current nav item — the reference underlines it in coral */
.aiw-page .def-nav-links a.is-current { position: relative; color: var(--def-ink); }
.aiw-page .def-nav-links a.is-current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--def-coral);
}

.aiw-page main { overflow: clip; }

/* ---------- shared section furniture ---------- */

.aiw-section { position: relative; padding-block: 58px; }
.aiw-section > .aiw-wrap { position: relative; z-index: 2; }

.aiw-head { text-align: center; margin-bottom: 34px; }
.aiw-head h2 {
  margin: 0;
  font-size: clamp(27px, 3.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -.048em;
  font-weight: 800;
}
.aiw-head p {
  margin: 14px auto 0;
  max-width: 62ch;
  color: #253c3e;
  font-size: 16.5px;
  line-height: 1.55;
}
/* The short coral rule the reference draws under each section heading. */
.aiw-rule { display: block; width: 92px; height: 5px; margin: 13px auto 0; border-radius: 3px; background: var(--def-coral); opacity: .85; }

.aiw-card {
  border: 1px solid var(--def-line-soft);
  border-radius: 16px;
  background: var(--aiw-card);
  box-shadow: 0 1px 2px rgba(9, 45, 47, .04), 0 14px 34px -20px rgba(9, 45, 47, .22);
}

.aiw-time {
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: -.01em;
}

/* ---------- hero ---------- */

.aiw-hero { position: relative; padding: 18px 0 56px; overflow: clip; }
/* The landing's decor spans are positioned for a CENTRED hero. This one is
   left-aligned, so re-place them clear of the headline and put the content on
   its own layer — otherwise the amber brush paints straight through "Don't". */
.aiw-hero > .aiw-wrap { position: relative; z-index: 2; }
.aiw-hero .def-hero-dots { left: auto; right: -12px; top: 232px; }
.aiw-hero .def-hero-brush-left { left: -196px; top: 300px; opacity: .5; }
.aiw-hero .def-hero-brush-right { right: -132px; top: -46px; opacity: .5; }
.aiw-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}
.aiw-hero h1 {
  margin: 0;
  font-size: clamp(34px, 3.35vw, 47px);
  line-height: 1.06;
  letter-spacing: -.055em;
  font-weight: 800;
}
.aiw-hero h1 .def-paint { white-space: nowrap; }
.aiw-lede {
  margin: 22px 0 0;
  max-width: 44ch;
  color: #253c3e;
  font-size: 17.5px;
  line-height: 1.5;
}

.aiw-chips {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.aiw-chips li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.aiw-chips svg { width: 19px; height: 19px; flex: none; color: var(--def-teal); }

/* the real launcher — primary action */
.aiw-launch { margin: 30px 0 0; }
.aiw-launch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 9px 9px 16px;
  border: 1.5px solid var(--def-line-soft);
  border-radius: 14px;
  background: var(--aiw-card);
  box-shadow: 0 10px 26px -18px rgba(9, 45, 47, .5);
}
/* Ring the FIELD BOX, never the transparent inner input (its outline would
   float misaligned inside the container). */
.aiw-launch-row:has(input:focus-visible) {
  border-color: var(--def-teal-bright);
  box-shadow: 0 0 0 3px rgba(30, 145, 138, .25);
}
.aiw-launch-row .def-youtube { flex: none; }
.aiw-launch-row input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--def-ink);
  font-size: 16px;
}
.aiw-launch-row input::placeholder { color: #7c8f8e; }

.aiw-btn-coral {
  flex: none;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: var(--def-coral-deep);
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 7px 15px -6px rgba(208, 67, 34, .55);
}
.aiw-btn-coral:hover { background: var(--def-coral-ink); }

.aiw-launch-foot { margin: 12px 0 0; color: var(--def-muted); font-size: 13.5px; }
.aiw-launch-foot b { color: var(--def-ink); font-weight: 700; }
.aiw-launch-foot span { margin-inline: 8px; opacity: .55; }

.aiw-hero-links { margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.aiw-textlink { color: var(--def-teal); font-size: 14.5px; font-weight: 750; text-decoration: none; }
.aiw-textlink:hover { text-decoration: underline; }

/* hero player — a demo teaser that forwards to the real Apple analysis */
.aiw-player { display: block; position: relative; border-radius: 16px; text-decoration: none; }
.aiw-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--aiw-deep);
  box-shadow: 0 24px 54px -26px rgba(9, 45, 47, .55);
}
.aiw-player-frame img { width: 100%; height: 100%; object-fit: cover; }
.aiw-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
}
.aiw-play svg { width: 27px; height: 27px; margin-left: 4px; color: var(--def-ink); fill: currentColor; }
.aiw-player:hover .aiw-play { background: #fff; transform: scale(1.04); }
.aiw-play { transition: transform .18s ease, background .18s ease; }
@media (prefers-reduced-motion: reduce) { .aiw-play { transition: none; } }

.aiw-player-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 16px 13px;
  background: linear-gradient(180deg, rgba(4, 18, 19, 0), rgba(4, 18, 19, .86));
  color: #fff;
  font-size: 12.5px;
}
.aiw-player-track { position: relative; flex: 1 1 auto; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .32); }
.aiw-player-track i { position: absolute; inset: 0 auto 0 0; width: 32%; border-radius: 2px; background: var(--def-coral); }
.aiw-player-track b {
  position: absolute;
  top: 50%;
  left: 32%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--def-coral);
  transform: translate(-50%, -50%);
}
.aiw-player-bar .aiw-pill { padding: 2px 7px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 5px; font-size: 10.5px; font-weight: 800; }
.aiw-player-bar svg { width: 15px; height: 15px; }

.aiw-filmstrip {
  margin: 14px 0 0;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid var(--def-line-soft);
  border-radius: 14px;
  background: #fffefa99;
}
.aiw-filmstrip figure { margin: 0; }
.aiw-filmstrip img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; border: 2px solid transparent; }
.aiw-filmstrip figcaption { margin-top: 7px; text-align: center; font-size: 12.5px; color: var(--def-muted); font-variant-numeric: tabular-nums; }
.aiw-filmstrip .is-active img { border-color: var(--def-coral); }
.aiw-filmstrip .is-active figcaption { color: var(--def-coral-deep); font-weight: 800; }

/* ---------- interactive product preview (dark cockpit) ---------- */

.aiw-preview-section { padding-block: 10px 62px; }

.aiw-cockpit {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: var(--aiw-deep);
  color: var(--aiw-deep-ink);
  box-shadow: 0 34px 70px -34px rgba(6, 34, 37, .75);
}
.aiw-cockpit h3, .aiw-cockpit h4 { font-family: Sora, Inter, sans-serif; }

.aiw-cockpit-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--aiw-deep-line);
  border-radius: 14px;
  background: var(--aiw-deep-2);
}
.aiw-cockpit-head > img { width: 84px; height: 47px; flex: none; object-fit: cover; border-radius: 8px; }
.aiw-cockpit-title { flex: 1 1 260px; min-width: 0; }
.aiw-cockpit-title h3 { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.aiw-cockpit-title p { margin: 4px 0 0; color: var(--aiw-deep-muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.aiw-stats { display: flex; flex: 0 1 auto; flex-wrap: wrap; }
.aiw-stats div { padding-inline: 20px; border-left: 1px solid var(--aiw-deep-line); }
.aiw-stats dt { margin: 0; color: var(--aiw-deep-muted); font-size: 12px; }
.aiw-stats dd { margin: 4px 0 0; font-size: 15.5px; font-weight: 750; font-variant-numeric: tabular-nums; }

.aiw-cockpit-cols {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.25fr) minmax(0, .93fr);
  gap: 14px;
  align-items: start;
}
.aiw-pane {
  padding: 14px;
  border: 1px solid var(--aiw-deep-line);
  border-radius: 14px;
  background: var(--aiw-deep-2);
}
.aiw-pane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 11px;
  font-size: 14.5px;
  font-weight: 700;
}
.aiw-pane-head svg { width: 17px; height: 17px; color: var(--aiw-deep-muted); }
.aiw-pane-head .aiw-spark { color: var(--def-amber); }

/* left pane — real timestamped moments */
.aiw-moments {
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border-radius: 10px;
  background: var(--aiw-card);
  color: var(--def-ink);
}
.aiw-moments li { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 10px; padding: 9px 12px; font-size: 12.5px; line-height: 1.45; }
.aiw-moments li + li { border-top: 1px solid #efe9dc; }
.aiw-moments .aiw-time { color: var(--def-muted); }
.aiw-moments .is-active { background: #fdeadf; border-left: 3px solid var(--def-coral); padding-left: 9px; }
.aiw-moments .is-active .aiw-time { color: var(--def-coral-deep); }
.aiw-pane-foot {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--aiw-deep-line);
  border-radius: 10px;
  color: var(--aiw-deep-ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.aiw-pane-foot:hover { background: #16403f; }
.aiw-pane-foot svg { width: 15px; height: 15px; }

/* middle pane — active frame + visual timeline */
.aiw-activeframe {
  position: relative;
  /* Source frames are 320px-wide storyboard tiles — the only ones AI Watch
     actually sampled. Cap the box so the frame is never upscaled more than
     ~1.1x; the pane keeps its width for the timeline strip below. */
  max-width: 360px;
  margin-inline: auto;
  border-radius: 11px;
  overflow: hidden;
  background: #061a1c;
}
.aiw-activeframe img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.aiw-activeframe .aiw-player-bar { padding: 20px 12px 10px; gap: 10px; }

.aiw-vtimeline { margin-top: 15px; }
.aiw-vtimeline > p { margin: 0 0 9px; font-size: 13.5px; font-weight: 700; }
.aiw-vstrip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.aiw-vstrip figure { margin: 0; }
.aiw-vstrip img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 7px; border: 2px solid transparent; }
.aiw-vstrip figcaption { margin-top: 6px; text-align: center; font-size: 11.5px; color: var(--aiw-deep-muted); font-variant-numeric: tabular-nums; }
.aiw-vstrip .is-active img { border-color: var(--def-coral); box-shadow: 0 0 0 3px rgba(239, 91, 63, .28); }
.aiw-vstrip .is-active figcaption { color: #ff8f6f; font-weight: 800; }
.aiw-ruler { position: relative; height: 15px; margin-top: 11px; background: repeating-linear-gradient(90deg, var(--aiw-deep-line) 0 1px, transparent 1px 9px) 0 50%/100% 8px no-repeat; }
.aiw-ruler i { position: absolute; top: 0; bottom: 0; left: 42%; width: 2px; background: var(--def-coral); }

/* right pane — grounded answer */
.aiw-qa { padding: 14px; border-radius: 11px; background: var(--aiw-card); color: var(--def-ink); }
.aiw-qa-row { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; }
.aiw-qa-row + .aiw-qa-row { margin-top: 12px; padding-top: 12px; border-top: 1px solid #efe9dc; }
.aiw-qa-row > b { font-family: Sora, Inter, sans-serif; font-size: 15px; font-weight: 700; color: var(--def-teal); }
.aiw-qa-q { margin: 0; font-size: 13.5px; line-height: 1.45; color: #253c3e; }
.aiw-qa-a { margin: 0; font-size: 15px; line-height: 1.42; font-weight: 650; letter-spacing: -.012em; }
.aiw-evidence { margin-top: 15px; padding-top: 13px; border-top: 1px solid #efe9dc; }
.aiw-evidence > p { margin: 0 0 9px; font-family: Sora, Inter, sans-serif; font-size: 14.5px; font-weight: 700; }
.aiw-cite {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.aiw-cite svg { width: 15px; height: 15px; flex: none; }
.aiw-cite-frame { border: 1px solid #f6cfc2; background: #fdeadf; color: var(--def-coral-ink); }
.aiw-cite-text { border: 1px solid var(--def-teal-pale); background: #e8f5f1; color: var(--def-teal); }
.aiw-cite:hover { filter: brightness(.97); }

/* cockpit ask row */
.aiw-askrow { margin-top: 14px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr); gap: 12px; align-items: center; }
.aiw-askbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border-radius: 11px;
  background: var(--aiw-card);
  color: var(--def-muted);
  font-size: 14px;
  text-decoration: none;
}
.aiw-askbox .aiw-spark { width: 18px; height: 18px; flex: none; color: var(--def-amber); }
.aiw-askbox span { flex: 1 1 auto; min-width: 0; }
.aiw-askbox > .aiw-askgo { flex: 0 0 auto; }
.aiw-askgo { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--def-teal); color: #fff; }
.aiw-askgo svg { width: 15px; height: 15px; }
.aiw-suggests { display: flex; flex-wrap: wrap; gap: 10px; }
.aiw-suggests span {
  flex: 1 1 auto;
  padding: 11px 14px;
  border: 1px solid var(--aiw-deep-line);
  border-radius: 10px;
  color: var(--aiw-deep-ink);
  font-size: 13px;
  text-align: center;
}

.aiw-mockcaption { margin: 16px auto 0; max-width: 78ch; color: var(--def-muted); font-size: 13px; line-height: 1.55; text-align: center; }
.aiw-mockcaption a { color: var(--def-teal); font-weight: 700; }

/* ---------- chapter journey ---------- */

.aiw-journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.aiw-chapter { position: relative; display: flex; flex-direction: column; padding: 14px; }
.aiw-chapter-thumb { position: relative; display: block; border-radius: 11px; overflow: hidden; }
.aiw-chapter-thumb img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.aiw-stamp {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(7, 93, 98, .92);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.aiw-chapter h3 { margin: 14px 0 0; font-size: 17px; font-weight: 700; letter-spacing: -.028em; }
.aiw-chapter h3 a { text-decoration: none; }
.aiw-chapter h3 a:hover { text-decoration: underline; }
.aiw-chapter > p { margin: 8px 0 0; color: var(--def-muted); font-size: 13.5px; line-height: 1.5; }
.aiw-chapter blockquote {
  margin: 13px 0 0;
  padding: 11px 13px;
  border: 1px solid var(--def-line-soft);
  border-radius: 9px;
  background: #fbf7ed80;
  color: #253c3e;
  font-size: 13px;
  line-height: 1.5;
}
.aiw-evidence-tag { margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 9px; color: var(--def-teal); font-size: 12.5px; font-weight: 700; }
.aiw-evidence-tag svg { width: 17px; height: 17px; }
/* dashed connector between chapters (decorative, hidden when stacked) */
.aiw-journey-grid > .aiw-chapter + .aiw-chapter::before {
  content: "";
  position: absolute;
  top: 78px;
  right: 100%;
  width: 20px;
  height: 2px;
  margin-right: 1px;
  background: repeating-linear-gradient(90deg, var(--def-coral) 0 4px, transparent 4px 8px);
  opacity: .65;
}

/* ---------- study + verify ---------- */

.aiw-study-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 46px; align-items: start; }
.aiw-col-head { margin: 0 0 22px; }
.aiw-col-head h2 { margin: 0; font-size: clamp(25px, 2.9vw, 33px); line-height: 1.1; letter-spacing: -.045em; font-weight: 800; }
.aiw-col-head .aiw-rule { margin-inline: 0; width: 78px; }
.aiw-study-cards { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: 16px; align-items: start; }

.aiw-notes { padding: 16px; }
.aiw-notes-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #efe9dc; }
.aiw-notes-bar h3 { margin: 0; font-size: 15px; font-weight: 700; }
.aiw-notes-bar div { display: flex; gap: 13px; color: var(--def-muted); font-size: 11.5px; }
.aiw-notes-bar span { display: inline-flex; align-items: center; gap: 4px; }
.aiw-notes-bar svg { width: 13px; height: 13px; }
.aiw-notes h4 { margin: 15px 0 8px; font-size: 12.5px; font-weight: 800; }
.aiw-notes ul { margin: 0; padding-left: 1.1em; font-size: 12.5px; line-height: 1.62; color: #253c3e; }
.aiw-notes ul li + li { margin-top: 4px; }
.aiw-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.aiw-tags span { padding: 4px 9px; border: 1px solid var(--def-teal-pale); border-radius: 6px; background: #e8f5f1; color: var(--def-teal); font-size: 11px; font-weight: 700; }
.aiw-keymoments { margin: 0; padding: 0; list-style: none; }
.aiw-keymoments li { display: grid; grid-template-columns: 40px 46px minmax(0, 1fr); gap: 10px; align-items: center; padding: 6px 0; font-size: 12px; }
.aiw-keymoments img { width: 40px; height: 23px; object-fit: cover; border-radius: 4px; }
.aiw-keymoments .aiw-time { color: var(--def-muted); font-size: 11.5px; }

.aiw-quiz { padding: 16px; }
.aiw-quiz-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.aiw-quiz-bar h3 { margin: 0; font-size: 15px; font-weight: 700; }
.aiw-quiz-bar small { color: var(--def-muted); font-size: 11.5px; }
.aiw-quiz > p { margin: 14px 0 12px; font-size: 13px; line-height: 1.45; color: #253c3e; }
.aiw-options { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.aiw-options li { display: grid; grid-template-columns: 22px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 10px 12px; border: 1px solid var(--def-line-soft); border-radius: 9px; font-size: 12.5px; }
.aiw-options b { color: var(--def-muted); font-weight: 700; }
.aiw-options .is-correct { border-color: #7fc0a9; background: #eaf6ef; }
.aiw-options .is-correct b { color: var(--def-teal); }
.aiw-options .aiw-check { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: #157f3b; color: #fff; }
.aiw-options .aiw-check svg { width: 11px; height: 11px; }
.aiw-verdict { margin: 12px 0 0; padding: 10px 12px; border: 1px solid #a9d7bd; border-radius: 9px; background: #eaf6ef; font-size: 12px; line-height: 1.5; color: #17402a; }
.aiw-verdict b { color: #106334; }
.aiw-quiz-cta { margin-top: 13px; display: block; width: 100%; padding: 12px; border: 0; border-radius: 9px; background: var(--def-teal); color: #fff !important; font-size: 13.5px; font-weight: 750; text-align: center; text-decoration: none; }

.aiw-benefits { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.aiw-benefit { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: start; }
.aiw-benefit > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; }
.aiw-benefit svg { width: 20px; height: 20px; }
.aiw-benefit strong { display: block; font-size: 13px; letter-spacing: -.01em; }
.aiw-benefit p { margin: 5px 0 0; color: var(--def-muted); font-size: 12px; line-height: 1.5; }
.aiw-i-amber { background: #fdf0d5; color: #8a5a08; }
.aiw-i-coral { background: #fdeadf; color: var(--def-coral-ink); }
.aiw-i-teal { background: #e8f5f1; color: var(--def-teal); }

/* verify column */
.aiw-verify-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr); gap: 18px; align-items: start; }
.aiw-answer { padding: 16px; }
.aiw-answer + .aiw-answer { margin-top: 16px; }
.aiw-answer .aiw-qa-row > b { font-size: 14px; }
.aiw-answer-shot { position: relative; margin-top: 13px; border-radius: 10px; overflow: hidden; }
.aiw-answer-shot img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.aiw-answer-shot .aiw-stamp { background: rgba(6, 26, 28, .88); }
.aiw-viewmoment {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 254, 250, .95);
  color: var(--def-ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.aiw-viewmoment:hover { background: #fff; }

.aiw-steps { padding: 16px; }
.aiw-step { position: relative; display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; padding-bottom: 20px; }
.aiw-step:last-child { padding-bottom: 0; }
.aiw-step::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 4px;
  left: 15px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--def-coral) 0 4px, transparent 4px 9px);
  opacity: .5;
}
.aiw-step:last-child::before { display: none; }
.aiw-step > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; border: 1px solid currentColor; }
.aiw-step svg { width: 15px; height: 15px; }
.aiw-step strong { display: block; font-size: 13px; }
.aiw-step p { margin: 8px 0 0; color: var(--def-muted); font-size: 12px; line-height: 1.55; }
.aiw-step figure { margin: 9px 0 0; position: relative; border-radius: 8px; overflow: hidden; }
.aiw-step figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.aiw-step-1 > span { color: var(--def-coral-ink); background: #fdeadf; border-color: #f6cfc2; }
.aiw-step-1 strong { color: var(--def-coral-ink); }
.aiw-step-2 > span, .aiw-step-3 > span { color: var(--def-teal); background: #e8f5f1; border-color: var(--def-teal-pale); }
.aiw-step-2 strong, .aiw-step-3 strong { color: var(--def-teal); }
.aiw-step-note { margin-top: 9px; padding: 10px 11px; border: 1px solid var(--def-line-soft); border-radius: 8px; background: #fbf7ed80; font-size: 12px; line-height: 1.5; color: #253c3e; }

/* ---------- transcript vs AI Watch ---------- */

.aiw-compare-card { padding: 26px; }
.aiw-compare-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.aiw-compare-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: 20px; align-content: start; padding: 20px; border-radius: 14px; }
.aiw-compare-panel h3 { margin: 0 0 14px; font-size: 17px; font-weight: 700; letter-spacing: -.028em; }
.aiw-compare-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; font-size: 13.5px; }
.aiw-compare-panel li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; }
.aiw-compare-panel li svg { width: 15px; height: 15px; margin-top: 3px; }
.aiw-cmp-text { background: #f1f4f0; }
.aiw-cmp-text h3 { color: var(--def-teal); }
.aiw-cmp-text li svg { color: var(--def-teal); }
.aiw-cmp-watch { background: #fdf0ea; }
.aiw-cmp-watch h3 { color: var(--def-coral-deep); }
.aiw-cmp-watch li svg { color: var(--def-coral-deep); }

/* the greyed "lines of speech" mock — deliberately wordless, so no transcript
   text is fabricated for a real video */
.aiw-lines { padding: 14px; border-radius: 11px; background: var(--aiw-card); display: grid; gap: 13px; align-content: start; }
.aiw-lines div { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 11px; align-items: start; }
.aiw-lines .aiw-time { color: var(--def-muted); font-size: 11.5px; }
.aiw-lines p { margin: 0; display: grid; gap: 5px; }
.aiw-lines i { height: 6px; border-radius: 3px; background: #ddd8cc; }
.aiw-lines i:nth-child(2) { width: 74%; }
.aiw-lines i:nth-child(3) { width: 52%; }

.aiw-seen { padding: 14px; border-radius: 11px; background: var(--aiw-card); align-content: start; display: grid; gap: 11px; }
.aiw-seen-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.aiw-seen-row img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: #f1ece0; }
.aiw-seen-row span { padding: 7px 4px; border: 1px solid var(--def-teal-pale); border-radius: 7px; background: #e8f5f1; color: var(--def-teal); font-size: 12px; font-weight: 750; text-align: center; font-variant-numeric: tabular-nums; }

.aiw-note { margin: 18px 0 0; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--def-muted); font-size: 13px; }
.aiw-note svg { width: 16px; height: 16px; flex: none; color: var(--def-teal); }

/* ---------- closing CTA band ---------- */

.aiw-cta {
  position: relative;
  margin-top: 12px;
  padding: 36px 0;
  background: var(--def-coral-deep);
  color: #fff;
  overflow: hidden;
}
.aiw-cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 34px; align-items: center; }
/* Reference decor: a white arrow pointing into the headline on the left, one
   pointing back at the form on the right, amber + teal brush at the corners. */
.aiw-page .aiw-cta-arrow { position: absolute; z-index: 1; width: 92px; height: 36px; color: rgba(255, 255, 255, .85); pointer-events: none; }
.aiw-cta-arrow-l { left: 26px; top: 50%; margin-top: -18px; }
.aiw-cta-arrow-r { right: 26px; top: 50%; margin-top: -18px; }
.aiw-cta-brush-l { left: -128px; top: -104px; opacity: .45; }
.aiw-cta-brush-r { right: -136px; bottom: -132px; opacity: .35; }
@media (max-width: 1220px) { .aiw-cta-arrow { display: none; } }
.aiw-cta h2 { margin: 0; font-size: clamp(26px, 3.1vw, 35px); line-height: 1.1; letter-spacing: -.045em; font-weight: 800; color: #fff; }
.aiw-cta-form { display: flex; align-items: center; gap: 9px; padding: 8px 8px 8px 14px; border-radius: 13px; background: #fffefa; }
.aiw-cta-form:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(255, 255, 255, .85); }
.aiw-cta-form input { flex: 1 1 auto; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--def-ink); font-size: 15.5px; }
.aiw-cta-foot { margin: 12px 0 0; color: #ffe3d9; font-size: 13.5px; }
.aiw-cta-foot b { color: #fff; font-weight: 750; }
.aiw-cta-foot span { margin-inline: 8px; opacity: .6; }
.aiw-cta .aiw-btn-coral { background: var(--def-coral-ink); box-shadow: none; }
.aiw-cta .aiw-btn-coral:hover { background: #862c1f; }

/* ---------- carried-over SEO body from the retired /watch pillar ---------- */

.aiw-doc { padding-block: 56px 20px; }
.aiw-doc .aiw-wrap { width: min(860px, calc(100% - 48px)); }
.aiw-doc h2 { margin: 34px 0 12px; font-size: 25px; letter-spacing: -.035em; font-weight: 800; }
.aiw-doc h2:first-child { margin-top: 0; }
.aiw-doc p, .aiw-doc li { font-size: 15.5px; line-height: 1.68; color: #253c3e; }
.aiw-doc a { color: var(--def-teal); font-weight: 600; }
.aiw-doc table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.aiw-doc th, .aiw-doc td { padding: 9px 11px; border: 1px solid var(--def-line-soft); text-align: left; vertical-align: top; }
.aiw-doc th { background: #f5efe3; font-weight: 750; }
.aiw-doc .aiw-scroll { overflow-x: auto; }
.aiw-doc details { padding: 12px 14px; border: 1px solid var(--def-line-soft); border-radius: 10px; background: var(--aiw-card); }
.aiw-doc details + details { margin-top: 9px; }
.aiw-doc summary { font-weight: 700; cursor: pointer; }
.aiw-doc details p { margin: 10px 0 0; }
.aiw-doc .aiw-fineprint { color: var(--def-muted); font-size: 13px; }

/* ---------- responsive ---------- */

@media (max-width: 1120px) {
  .aiw-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .aiw-lede { max-width: none; }
  .aiw-cockpit-cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .aiw-cockpit-cols > .aiw-pane:nth-child(2) { grid-column: 1 / -1; order: -1; }
  .aiw-journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aiw-journey-grid > .aiw-chapter + .aiw-chapter::before { display: none; }
  .aiw-study-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .aiw-compare-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .aiw-stats { width: 100%; }
  .aiw-stats div:first-child { padding-left: 0; border-left: 0; }
  .aiw-askrow { grid-template-columns: minmax(0, 1fr); }
  .aiw-cta-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
}

@media (max-width: 760px) {
  .aiw-wrap { width: calc(100% - 36px); }
  .aiw-section { padding-block: 42px; }
  .aiw-cockpit { padding: 12px; border-radius: 18px; }
  .aiw-cockpit-cols { grid-template-columns: minmax(0, 1fr); }
  .aiw-cockpit-cols > .aiw-pane:nth-child(2) { order: 0; }
  .aiw-study-cards { grid-template-columns: minmax(0, 1fr); }
  .aiw-verify-grid { grid-template-columns: minmax(0, 1fr); }
  .aiw-benefits { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .aiw-compare-panel { grid-template-columns: minmax(0, 1fr); }
  .aiw-compare-card { padding: 18px; }
  .aiw-launch-row { flex-wrap: wrap; padding: 12px; }
  .aiw-launch-row input { flex-basis: 100%; order: -1; padding-bottom: 4px; }
  .aiw-btn-coral { flex: 1 1 auto; }
  .aiw-cta-form { flex-wrap: wrap; padding: 12px; }
  .aiw-cta-form input { flex-basis: 100%; order: -1; padding-bottom: 4px; }
}

@media (max-width: 560px) {
  /* Stacked launcher: the decorative YouTube glyph would otherwise sit beside
     the button on its own row. Drop it and let the action span the width. */
  .aiw-launch-row .def-youtube, .aiw-cta-form .def-youtube { display: none; }
  .aiw-journey-grid { grid-template-columns: minmax(0, 1fr); }
  .aiw-filmstrip, .aiw-vstrip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .aiw-filmstrip figure:nth-child(n + 4), .aiw-vstrip figure:nth-child(n + 4) { display: none; }
  .aiw-seen-row { gap: 7px; }
}

/* A closed <details> still lays out its slot content in Chromium, so the hidden
   answer keeps a box ~50px past the FAQ container (invisible, but it trips
   layout audits and would become a real overflow inside any clipped ancestor).
   Take the box away when the disclosure is closed. */
.aiw-doc details:not([open]) > :not(summary) { display: none; }

/* ---------------------------------------------------------------------------
   Anchor colour overrides + contrast fixes.

   landing-rebuild.css sets `.def-page a { color: inherit }` — specificity
   (0,1,1) — which outranks any single-class rule applied to an anchor. Every
   anchor-based component below therefore needs the extra `.aiw-page` to win.
   Without it the ask-box rendered cream-on-cream (1.1:1) and the evidence
   chips lost their colour entirely.
   --------------------------------------------------------------------------- */
.aiw-page .aiw-textlink { color: var(--def-teal); }
.aiw-page .aiw-askbox { color: var(--def-muted); }
.aiw-page .aiw-pane-foot { color: var(--aiw-deep-ink); }
.aiw-page .aiw-cite-frame { color: var(--def-coral-ink); }
.aiw-page .aiw-cite-text { color: var(--def-teal); }
.aiw-page .aiw-viewmoment { color: var(--def-ink); }
.aiw-page .aiw-quiz-cta { color: #fff; }
.aiw-page .aiw-btn-coral { color: #fff; }
.aiw-page .aiw-chapter h3 a { color: var(--def-ink); }
.aiw-page .aiw-doc a,
.aiw-page .aiw-mockcaption a { color: var(--def-teal); }

/* WCAG AA: the mid coral (#d04322) only reaches ~4.0:1 on its own pale tints,
   so small text on them uses the darker ink coral (#9f3525, ~6:1). */
.aiw-moments .is-active .aiw-time { color: var(--def-coral-ink); }
.aiw-cmp-watch h3 { color: var(--def-coral-ink); }
/* On the solid coral band nothing short of white clears 4.5:1 — hierarchy in
   this line comes from weight, not from tinting the text. */
.aiw-cta-foot { color: #fff; }
.aiw-cta-foot span { opacity: .7; }

/* Playhead truth: the hero is an unplayed poster, the cockpit frame is the real
   10:59 mark of a 1:16:14 video (14.4%). */
.aiw-player-frame .aiw-player-track i { width: 0; }
.aiw-activeframe .aiw-player-track i { width: 14.4%; }
.aiw-activeframe .aiw-player-track b { left: 14.4%; }
