/* ==========================================================================
   EITRI — what each level actually does to your footage

   The pricing page answers "what does it cost". This answers the question
   that comes first and matters more: what comes back. So there is no number
   anywhere in this section — the money is one click away and the decision
   being made here is not about money.

   Four rows, alternating sides. The alternation is not decoration: it breaks
   the single card rhythm the rest of the page runs on, and it gives each
   level its own moment instead of four tiles competing in a grid.

   The footage is the same 2048x320 strip the pricing demo uses — four cells,
   one file. Reused rather than duplicated, so the two pages can never drift
   into showing different things for the same level.
   ========================================================================== */

.offer{display:flex;flex-direction:column;gap:34px;margin-top:26px}

.offer-row{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
  align-items:center;
}
@media (min-width:860px){
  .offer-row{grid-template-columns:1.15fr .85fr;gap:30px}
  /* Every other level leads with the copy instead of the frames. */
  .offer-row:nth-child(even) .offer-media{order:2}
  .offer-row:nth-child(even) .offer-copy{order:1}
}

/* ------------------------------------------------------------ the frames */
.offer-media{
  display:grid;
  grid-template-columns:34fr 66fr;
  gap:9px;
  align-items:end;
  min-width:0;
}
.offer-frame{
  position:relative;
  aspect-ratio:16/10;
  border-radius:var(--r-tile);
  overflow:hidden;
  background:#101014;
  border:1px solid var(--line);
  isolation:isolate;
}
.offer-frame.is-raw{filter:grayscale(1)}

/* One file, four windows — the same trick the pricing demo uses. The cell is
   chosen by a custom property on the row, so the markup carries no offsets. */
.offer-media img,
.offer-media video{
  position:absolute;inset:0;
  width:400%;max-width:none;height:100%;
  object-fit:cover;display:block;
  transform:translateX(calc(var(--cell,0) * -25%));
}
/* The raw frame is one picture, not a strip, so it fills rather than slides. */
.offer-frame.is-raw img{width:100%;transform:none}
.offer-frame video{z-index:1;background:transparent}

.offer-tag{
  position:absolute;top:7px;left:7px;z-index:2;
  display:inline-flex;align-items:center;gap:5px;
  padding:3px 8px 3px 6px;
  border-radius:var(--r-pill);
  background:rgba(10,10,12,.74);
  border:1px solid var(--line-2);
  backdrop-filter:blur(6px);
  font-family:var(--mono);font-size:8.5px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;color:var(--text);
  white-space:nowrap;
}
.offer-tag::before{
  content:"";width:5px;height:5px;border-radius:50%;
  background:var(--green);box-shadow:0 0 0 2px var(--green-dim);
}
/* Chrome, not footage: the dot stays red even though the picture is grey. */
.is-raw .offer-tag{filter:grayscale(0)}
.is-raw .offer-tag::before{background:var(--red);box-shadow:0 0 0 2px var(--red-dim)}

/* -------------------------------------------------------------- the copy */
.offer-copy{min-width:0}
.offer-copy h3{
  font-size:22px;font-weight:800;letter-spacing:-.02em;margin:6px 0 0;
}
.offer-says{margin:9px 0 0;color:var(--text-2);font-size:14.5px;line-height:1.55}
.offer-list{
  list-style:none;margin:14px 0 0;padding:0;
  display:flex;flex-direction:column;gap:7px;
}
.offer-list li{
  position:relative;padding-left:18px;
  font-size:13.5px;line-height:1.5;color:var(--text-2);
}
/* A tick drawn in CSS, so the list needs no icon font and no images. */
.offer-list li::before{
  content:"";position:absolute;left:1px;top:6px;
  width:7px;height:4px;
  border-left:1.6px solid var(--text-3);
  border-bottom:1.6px solid var(--text-3);
  transform:rotate(-45deg);
}
/* What this level adds that the one before it did not. */
.offer-list li.is-new{color:var(--text)}
.offer-list li.is-new::before{border-color:var(--orange)}

/* ----------------------------------------------------------- the control */
.offer-play{
  display:inline-flex;align-items:center;gap:9px;
  min-height:44px;padding:0 16px 0 13px;margin-top:22px;
  border-radius:var(--r-pill);
  border:1px solid var(--line-2);
  background:var(--panel-2);color:var(--text);
  font-family:var(--mono);font-size:10px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;cursor:pointer;
  transition:background var(--hover),border-color var(--hover);
}
.offer-play:hover{background:var(--panel-3)}
.offer-play:focus-visible{outline:2px solid var(--orange);outline-offset:2px}
.offer-play-ico{
  width:0;height:0;
  border-left:9px solid var(--orange);
  border-top:6px solid transparent;border-bottom:6px solid transparent;
}
.offer-play[aria-pressed="true"] .offer-play-ico{
  width:9px;height:12px;border:0;
  background:linear-gradient(90deg,var(--orange) 0 3px,transparent 3px 6px,var(--orange) 6px 9px);
}

.offer-note{
  margin-top:18px;font-family:var(--mono);font-size:11px;
  color:var(--text-3);line-height:1.6;
}

@media (prefers-reduced-motion:reduce){
  .offer-play{transition:none}
}
