/* ==========================================================================
   FIRSTPEAK STUDIO — WEBSITES (the flagship) + THE PROOF ROOM
   Page-specific styles for /websites and the homepage Proof Room teaser.
   Built on the V2 tokens (:root in v2.css). Doctrine matches v2: content is
   visible by default; gold appears only on live / interactive / accent surfaces;
   no motion is required to read the page. Keeps v2.css untouched.
   ========================================================================== */

/* ---- page hero (granite, content-page) ---------------------------------- */
.web-hero { position: relative; overflow: hidden; background: var(--granite); color: var(--bone);
  min-height: clamp(460px, 78vh, 640px); display: flex; align-items: flex-end; }
.web-hero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.web-hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,29,34,.78) 0%, rgba(26,29,34,.32) 30%, rgba(26,29,34,.5) 62%, rgba(26,29,34,.96) 100%),
              radial-gradient(120% 90% at 50% 120%, rgba(46,61,52,.4) 0%, rgba(34,38,45,0) 55%); }
.web-hero__inner { position: relative; z-index: 2; width: 100%;
  padding-top: clamp(6rem, 13vh, 9rem); padding-bottom: clamp(3rem, 8vh, 5.5rem); }
.web-hero__eyebrow { display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .22em; color: var(--gold-bright); }
.web-hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); flex: none; }
.web-hero__heading { font-weight: 800; letter-spacing: -.02em; font-size: clamp(2.5rem, 6.4vw, 5.4rem);
  line-height: 1.0; max-width: 16ch; margin: .8rem 0 0; text-shadow: 0 2px 40px rgba(0,0,0,.45); }
.web-hero__heading em { font-style: normal; color: var(--gold); }
.web-hero__sub { font-family: var(--font-serif); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55;
  color: rgba(242,238,230,.9); max-width: 52ch; margin-top: 1.2rem; }
.web-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: clamp(1.6rem, 3.4vh, 2.4rem); }

/* ---- a browser-chrome device frame -------------------------------------- */
.device { border-radius: 12px; overflow: hidden; background: #0d0f12;
  box-shadow: 0 40px 100px -36px rgba(0,0,0,.7), 0 0 0 1px rgba(242,238,230,.08);
  outline: 1px solid rgba(216,154,69,.22); outline-offset: -1px; }
.device__bar { display: flex; align-items: center; gap: .7rem; padding: .6rem .9rem;
  background: linear-gradient(180deg, #2b2f37, #21242b); border-bottom: 1px solid rgba(0,0,0,.4); }
.device__dots { display: inline-flex; gap: .42rem; flex: none; }
.device__dots span { width: 11px; height: 11px; border-radius: 50%; background: #4a4f59; }
.device__dots span:nth-child(1) { background: #e6685f; }
.device__dots span:nth-child(2) { background: #e6b15e; }
.device__dots span:nth-child(3) { background: #6fc06b; }
.device__url { flex: 1; min-width: 0; display: flex; align-items: center; gap: .45rem;
  padding: .35rem .8rem; border-radius: 999px; background: rgba(13,15,18,.7);
  font-family: var(--font-sans); font-size: .76rem; color: rgba(242,238,230,.7);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.device__url svg { width: 12px; height: 12px; flex: none; fill: var(--gold); opacity: .85; }
.device__screen { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #06141a; }
.device__screen img, .device__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; object-fit: cover; object-position: top center; display: block; }

/* ---- the Proof Room ----------------------------------------------------- */
.proof { background: var(--granite); color: var(--bone); }
.proof__inner { padding-top: clamp(4.5rem, 10vh, 7.5rem); padding-bottom: clamp(4.5rem, 10vh, 7.5rem); }
.proof__head { max-width: 60ch; margin-bottom: clamp(2.4rem, 5vh, 3.6rem); }
.proof__title { font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.8rem); letter-spacing: -.01em; margin: .5rem 0 0; }
.proof__deck { font-family: var(--font-serif); font-style: italic; font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6; color: rgba(242,238,230,.72); max-width: 50ch; margin-top: 1rem; }

/* featured (GLASSHOUR) — live, take-the-wheel */
.proof__feature { position: relative; }
.proof__feature .device__screen { aspect-ratio: 16 / 9; }
.proof__live-cue { position: absolute; top: 1rem; left: 1rem; z-index: 3; display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .8rem; border-radius: 999px; background: rgba(13,15,18,.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 600; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); }
.proof__live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(216,154,69,.6); animation: proofPulse 2.4s var(--ease) infinite; }
@keyframes proofPulse { 0% { box-shadow: 0 0 0 0 rgba(216,154,69,.55); } 70% { box-shadow: 0 0 0 9px rgba(216,154,69,0); } 100% { box-shadow: 0 0 0 0 rgba(216,154,69,0); } }
.proof__loadbtn { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  width: 100%; cursor: pointer; background: linear-gradient(180deg, rgba(11,31,38,.2), rgba(11,31,38,.55)); }
.proof__loadbtn img { position: absolute; inset: 0; z-index: -1; opacity: .9; }
.proof__loadbtn-play { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--granite); box-shadow: 0 10px 30px rgba(0,0,0,.5); transition: transform var(--t-fast) var(--ease), background var(--t-fast); }
.proof__loadbtn:hover .proof__loadbtn-play { transform: scale(1.06); background: var(--gold-bright); }
.proof__loadbtn-play svg { width: 30px; height: 30px; margin-left: 3px; fill: currentColor; }
.proof__loadbtn-label { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.proof__feature.is-live .proof__loadbtn { display: none; }
.proof__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.2rem; margin-top: 1.1rem; }
.proof__meta-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--bone); }
.proof__meta-desc { font-family: var(--font-serif); font-style: italic; font-size: .92rem; color: rgba(242,238,230,.66); }
.proof__meta-link { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .04em;
  color: var(--gold); text-transform: uppercase; }
.proof__meta-link:hover { color: var(--gold-bright); }
.proof__meta-link svg { width: 12px; height: 12px; display: inline; vertical-align: -1px; margin-left: .25rem; fill: currentColor; }

/* the case row (the three live sites) */
.proof__cases { margin-top: clamp(2.6rem, 6vh, 4rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.pcase { display: flex; flex-direction: column; }
.pcase .device__screen { aspect-ratio: 16 / 11; }
.pcase__body { display: flex; align-items: baseline; gap: .6rem; margin-top: .9rem; padding-top: .6rem; border-top: 1px solid var(--hairline-dark); }
.pcase__name { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--bone); }
.pcase__type { font-family: var(--font-serif); font-style: italic; font-size: .8rem; color: rgba(242,238,230,.55); }
.pcase__open { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.pcase__open:hover { color: var(--gold-bright); }
.pcase__open svg { width: 11px; height: 11px; display: inline; vertical-align: -1px; margin-left: .2rem; fill: currentColor; }

/* ---- value / process / gateway (bone + granite plates) ------------------ */
.web-value { background: var(--bone); color: var(--granite); }
.web-value__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 2.8rem); margin-top: clamp(2.4rem, 5vh, 3.4rem); }
.web-value__no { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--gold-deep); }
.web-value__h { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 1.9vw, 1.5rem); margin: .6rem 0 .5rem; letter-spacing: -.01em; }
.web-value__p { font-size: .96rem; line-height: 1.65; color: var(--slate); max-width: 40ch; }

.web-process { background: var(--bone); color: var(--granite); }
.web-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: clamp(2.4rem, 5vh, 3.4rem); }
.web-step { border-top: 2px solid var(--granite); padding-top: 1rem; }
.web-step__no { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.web-step__h { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin: .5rem 0 .45rem; }
.web-step__p { font-size: .9rem; line-height: 1.6; color: var(--slate); }

.web-gateway { background: var(--granite); color: var(--bone); }
.web-gateway__lead { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.45;
  color: var(--bone); max-width: 28ch; }
.web-gateway__lead em { font-style: italic; color: var(--gold); }
.web-gateway__body { margin-top: 1.4rem; max-width: 56ch; font-size: 1rem; line-height: 1.75; color: rgba(242,238,230,.82); }
.web-gateway__rungs { margin-top: clamp(2.2rem, 5vh, 3.4rem); display: grid; gap: 0; }
.web-rung { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: baseline;
  padding: 1.15rem 0; border-top: 1px solid var(--hairline-dark); }
.web-rung:last-child { border-bottom: 1px solid var(--hairline-dark); }
.web-rung__no { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .08em; color: var(--accent-dark); }
.web-rung__h { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--bone); }
.web-rung__h em { font-style: normal; color: var(--gold); }
.web-rung__p { font-size: .9rem; line-height: 1.6; color: rgba(242,238,230,.66); margin-top: .25rem; }
.web-rung--now .web-rung__no { color: var(--gold); }

/* ---- the offer (the gateway price) -------------------------------------- */
.web-offer { position: relative; overflow: hidden; background: var(--granite); color: var(--bone); }
.web-offer::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 90% at 50% -8%, rgba(216,154,69,.15), rgba(34,38,45,0) 62%); }
.web-offer__inner { position: relative; text-align: center; max-width: 64ch; margin-inline: auto;
  padding-top: clamp(4.5rem,10vh,7.5rem); padding-bottom: clamp(4.5rem,10vh,7.5rem); }
.web-offer__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 600; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .24em; color: var(--gold); margin-bottom: 1.4rem; }
.web-offer__eyebrow::before, .web-offer__eyebrow::after { content: ""; width: 26px; height: 1px; background: rgba(216,154,69,.5); }
.web-offer__headline { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(2.1rem, 5.4vw, 4.1rem); line-height: 1.05; color: var(--bone); }
.web-offer__headline .num { color: var(--gold); }
.web-offer__why { font-family: var(--font-serif); font-size: clamp(1.05rem,1.6vw,1.3rem); line-height: 1.6;
  color: rgba(242,238,230,.86); max-width: 52ch; margin: 1.6rem auto 0; }
.web-offer__fine { font-size: .85rem; color: rgba(242,238,230,.55); margin-top: 1.2rem; }
.web-offer__cta { margin-top: clamp(1.8rem,4vh,2.6rem); }

/* ---- the three build tiers (pairs with the offer, dark block) ----------- */
.web-tiers { background: var(--granite); color: var(--bone);
  padding-top: clamp(3rem, 7vh, 5rem); padding-bottom: clamp(4rem, 9vh, 6.5rem); }
.web-tiers__head { text-align: center; max-width: 60ch; margin-inline: auto; }
.web-tiers__eyebrow { font-family: var(--font-display); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .24em; color: var(--gold); }
.web-tiers__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.08; margin: .8rem 0 0; color: var(--bone); }
.web-tiers__lead { font-family: var(--font-serif); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.6;
  color: rgba(242,238,230,.78); max-width: 54ch; margin: 1.1rem auto 0; }

.web-tiers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem);
  margin-top: clamp(2.6rem, 5vh, 3.6rem); align-items: stretch; }
.tier { position: relative; background: rgba(242,238,230,.035); border: 1px solid var(--hairline-dark);
  border-radius: 14px; padding: clamp(1.5rem, 2.2vw, 2rem); display: flex; flex-direction: column; }
.tier--featured { background: rgba(216,154,69,.06); border-color: rgba(216,154,69,.4);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.7); }
.tier__flag { position: absolute; top: -.7rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--granite-deep); background: var(--gold);
  padding: .3rem .8rem; border-radius: 999px; white-space: nowrap; }
.tier__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em; color: var(--gold-bright); }
.tier__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--bone); margin: .35rem 0 .1rem; line-height: 1; }
.tier__price .num { color: var(--gold); }
.tier__for { font-family: var(--font-serif); font-style: italic; font-size: .98rem; line-height: 1.45;
  color: rgba(242,238,230,.72); margin: .5rem 0 1.1rem; min-height: 2.8em; }
.tier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.tier__list li { position: relative; padding-left: 1.4rem; font-size: .92rem; line-height: 1.5;
  color: rgba(242,238,230,.82); }
.tier__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold); opacity: .85; }
.tier__time { margin-top: auto; padding-top: 1.1rem; margin-bottom: 0;
  border-top: 1px solid var(--hairline-dark);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: rgba(242,238,230,.82); }
.tier__time span { display: block; color: var(--gold-bright); text-transform: uppercase;
  letter-spacing: .14em; font-size: .66rem; font-weight: 700; margin-bottom: .3rem; }

.web-tiers__notes { list-style: none; margin: clamp(2.6rem,5vh,3.6rem) 0 0; padding: clamp(1.8rem,4vh,2.6rem) 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem);
  border-top: 1px solid var(--hairline-dark); }
.web-tiers__note { font-size: .9rem; line-height: 1.6; color: rgba(242,238,230,.66); }
.web-tiers__note-h { display: block; font-family: var(--font-display); font-weight: 700;
  font-size: .98rem; color: var(--bone); margin-bottom: .25rem; }

@media (max-width: 860px) {
  .web-tiers__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .web-tiers__notes { grid-template-columns: 1fr; gap: 1.4rem; }
  .tier__for { min-height: 0; }
}

/* ---- the free teardown (aspirational + loss nudge, light band) ----------- */
.teardown { background: var(--bone); color: var(--granite); }
.teardown__inner { text-align: center; max-width: 60ch; margin-inline: auto;
  padding-top: clamp(3.2rem, 7vh, 5rem); padding-bottom: clamp(3.2rem, 7vh, 5rem); }
.teardown__eyebrow { display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 600; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .24em; color: var(--gold-deep); margin-bottom: 1.1rem; }
.teardown__eyebrow::before, .teardown__eyebrow::after { content: ""; width: 24px; height: 2px; background: var(--gold); }
.teardown__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem); line-height: 1.13; margin: 0 auto; max-width: 24ch; color: var(--granite); }
.teardown__title em { font-style: normal; color: var(--gold-deep); }
.teardown__body { font-family: var(--font-serif); font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.6;
  color: var(--slate); max-width: 52ch; margin: 1.2rem auto 0; }
.teardown__actions { margin-top: clamp(1.6rem, 3.5vh, 2.4rem); display: flex; flex-direction: column;
  align-items: center; gap: .85rem; }
.teardown__note { font-size: .85rem; color: var(--slate); }

/* ---- services recurring plans (the recurring layer, dark block) --------- */
.svc-plans { background: var(--granite-deep); color: var(--bone);
  padding-top: clamp(3.4rem, 7vh, 5.5rem); padding-bottom: clamp(3.4rem, 7vh, 5.5rem); }
.svc-plans__head { text-align: center; max-width: 60ch; margin-inline: auto; }
.svc-plans__eyebrow { font-family: var(--font-display); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .24em; color: var(--gold); }
.svc-plans__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.1; margin: .7rem 0 0; color: var(--bone); }
.svc-plans__lead { font-family: var(--font-serif); font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.6;
  color: rgba(242,238,230,.78); max-width: 56ch; margin: 1rem auto 0; }
.svc-plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem);
  margin-top: clamp(2.4rem, 5vh, 3.4rem); align-items: stretch; }
.splan { position: relative; background: rgba(242,238,230,.035); border: 1px solid var(--hairline-dark);
  border-radius: 14px; padding: clamp(1.4rem, 2.2vw, 1.9rem); display: flex; flex-direction: column; }
.splan--featured { background: rgba(216,154,69,.06); border-color: rgba(216,154,69,.4);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.7); }
.splan__flag { position: absolute; top: -.7rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--granite-deep); background: var(--gold);
  padding: .3rem .8rem; border-radius: 999px; white-space: nowrap; }
.splan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .02em; color: var(--gold-bright); }
.splan__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--bone); margin: .3rem 0 .7rem; line-height: 1; }
.splan__price .num { color: var(--gold); }
.splan__per { font-size: .9rem; font-weight: 600; color: rgba(242,238,230,.6); }
.splan__for { font-family: var(--font-serif); font-size: .98rem; line-height: 1.5; color: rgba(242,238,230,.78); }
.svc-plans__fine { text-align: center; font-size: .88rem; color: rgba(242,238,230,.62);
  margin-top: clamp(1.6rem, 3.5vh, 2.4rem); }
@media (max-width: 860px) {
  .svc-plans__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
}

/* ---- homepage Proof Room teaser ----------------------------------------- */
.proofteaser { background: var(--granite); color: var(--bone); position: relative; }
.proofteaser__inner { padding-top: clamp(4.5rem,10vh,7rem); padding-bottom: clamp(4.5rem,10vh,7rem);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.proofteaser__eyebrow { display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); }
.proofteaser__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); flex: none; }
.proofteaser__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,3.2vw,2.7rem);
  letter-spacing: -.01em; line-height: 1.08; margin: .9rem 0 0; }
.proofteaser__lead { font-family: var(--font-serif); font-size: clamp(1.02rem,1.4vw,1.18rem); line-height: 1.6;
  color: rgba(242,238,230,.8); max-width: 42ch; margin-top: 1.1rem; }
.proofteaser__offer { margin-top: 1.4rem; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.1rem,1.7vw,1.4rem); letter-spacing: -.01em; color: var(--bone); }
.proofteaser__offer .num { color: var(--gold); }
.proofteaser__offer small { display: block; font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: .82rem; letter-spacing: 0; color: rgba(242,238,230,.55); margin-top: .35rem; }
.proofteaser__clients { margin-top: 1rem; font-size: .9rem; line-height: 1.55; color: rgba(242,238,230,.7); max-width: 46ch; }
.proofteaser__clients a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.proofteaser__clients a:hover { color: var(--bone); }
.proofteaser__cta { margin-top: clamp(1.6rem, 4vh, 2.4rem); display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.proofteaser__link { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.proofteaser__link:hover { color: var(--gold-bright); }
.proofteaser__media { position: relative; display: block; }
.proofteaser__media .device__screen { aspect-ratio: 16 / 10; }
.proofteaser__media .proof__loadbtn-play { position: absolute; inset: 0; margin: auto; width: 70px; height: 70px; }
.proofteaser__media:hover .proof__loadbtn-play { transform: scale(1.06); background: var(--gold-bright); }
.proofteaser__tag { position: absolute; left: 1rem; top: 1rem; z-index: 3; display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .75rem; border-radius: 999px; background: rgba(13,15,18,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 600; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); }
@media (max-width: 860px) { .proofteaser__inner { grid-template-columns: 1fr; gap: 2.2rem; } }

/* Signal flagship teaser, mirrored (device on the left) for rhythm against the Websites band above */
.proofteaser--signal { box-shadow: inset 0 1px 0 rgba(242,238,230,.08); }
.proofteaser--signal .proofteaser__inner { grid-template-columns: 1.05fr 1fr; }
.proofteaser--signal .proofteaser__copy { grid-column: 2; grid-row: 1; }
.proofteaser--signal .proofteaser__media { grid-column: 1; grid-row: 1; }
@media (max-width: 860px) {
  .proofteaser--signal .proofteaser__inner { grid-template-columns: 1fr; }
  .proofteaser--signal .proofteaser__copy,
  .proofteaser--signal .proofteaser__media { grid-column: 1; grid-row: auto; }
}

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 860px) {
  .proof__cases, .web-value__grid { grid-template-columns: 1fr; }
  .web-process__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .web-process__steps { grid-template-columns: 1fr; }
  .proof__meta-link, .pcase__open { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) { .proof__live-dot { animation: none; } }
