/* The one-hour game session: warm, direct, and intentionally quiet. */
.session-page {
  margin: 0;
  background: var(--brand-paper);
  color: var(--brand-ink);
  font: 400 16px/1.6 "Geist", Arial, sans-serif;
}
.session-page * { box-sizing: border-box; }
.session-page main { max-width: none; margin: 0; padding: 78px 0 0; }
.session-page h1, .session-page h2, .session-page h3, .session-page p { margin: 0; }
.session-page button, .session-page select { font: inherit; }
.session-page button { cursor: pointer; }
.session-page a { color: inherit; }
.session-page :focus-visible { outline: 3px solid var(--brand-coral); outline-offset: 3px; }
.session-page .wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.session-page .eyebrow { color: #9b413a; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.session-page .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 11px 19px; border: 1px solid var(--brand-ink);
  border-radius: 13px; background: var(--brand-ink); color: white;
  font-size: 14px; font-weight: 750; line-height: 1.25; text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.session-page .btn:hover { background: #32353a; transform: translateY(-1px); }
.session-page .btn:active { transform: translateY(1px); }
.session-page .btn.coral { border-color: var(--brand-coral); background: var(--brand-coral); color: var(--brand-ink); }
.session-page .btn.coral:hover { border-color: #ff9289; background: #ff9289; }
.session-page .btn.ghost { border-color: #c9c7c2; background: white; color: var(--brand-ink); }
.session-page .btn.ghost:hover { border-color: var(--brand-ink); background: #f5f3ee; }
.session-page .btn.small { min-height: 39px; padding: 8px 13px; font-size: 13px; }

.session-page .hero { padding: clamp(72px, 8vw, 122px) 0 80px; background: var(--brand-paper); }
.session-page .hero .wrap { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); align-items: center; gap: clamp(42px, 6vw, 90px); }
.session-page .hero h1 { max-width: 690px; margin: 18px 0 24px; font-size: clamp(54px, 6.2vw, 86px); font-weight: 760; line-height: .98; letter-spacing: -.07em; text-wrap: balance; }
.session-page .hero .lead { max-width: 590px; color: #46484c; font-size: clamp(18px, 1.65vw, 22px); line-height: 1.55; }
.session-page .hero .lead strong { color: var(--brand-ink); font-weight: 700; }
.session-page .hero .cta { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.session-page .hero .fine { max-width: 500px; margin-top: 19px; color: var(--brand-muted); font-size: 13px; }
.session-page .cab { overflow: hidden; border: 1px solid var(--brand-line); border-radius: 22px; background: white; box-shadow: 0 25px 60px rgba(23, 25, 28, .08); }
.session-page .cab .screen { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e9d9c5; }
.session-page .cab .screen img { display: block; width: 100%; height: 100%; object-fit: cover; }
.session-page .cab .screen::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(18, 18, 18, .45)); pointer-events: none; }
.session-page .cab .screen-label { position: absolute; z-index: 1; left: 20px; bottom: 18px; color: white; font-size: 14px; font-weight: 650; text-shadow: 0 1px 8px #0008; }
.session-page .cab .bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; }
.session-page .cab .bar strong { display: block; font-size: 15px; line-height: 1.2; }
.session-page .cab .bar span { display: block; color: var(--brand-muted); font-size: 12px; }

.session-page .anchor { border-block: 1px solid var(--brand-line); background: white; }
.session-page .anchor .wrap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; padding-block: 30px; }
.session-page .anchor strong { display: block; font-size: 21px; font-weight: 730; letter-spacing: -.035em; }
.session-page .anchor span { display: block; margin-top: 5px; color: var(--brand-muted); font-size: 14px; line-height: 1.5; }

.session-page .games { padding: clamp(72px, 8vw, 112px) 0 70px; }
.session-page .games h2, .session-page .how h2, .session-page .buy h2, .session-page .faq h2 { max-width: 820px; margin-top: 11px; font-size: clamp(36px, 4.4vw, 62px); font-weight: 730; line-height: 1.05; letter-spacing: -.058em; text-wrap: balance; }
.session-page .games .intro { max-width: 710px; margin-top: 18px; color: var(--brand-muted); font-size: 18px; }
.session-page .games .grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 38px; }
.session-page .tile { overflow: hidden; display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--brand-line); border-radius: 18px; background: white; transition: border-color .2s ease, transform .2s ease; }
.session-page .tile:hover { transform: translateY(-2px); }
.session-page .tile[data-selected="true"] { border: 2px solid var(--brand-coral); }
.session-page .tile .shot { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--shot-bg, #e9e5df); }
.session-page .tile .shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.session-page .tile .shot .art-label { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px; color: white; font-size: clamp(24px, 2.4vw, 36px); font-weight: 760; line-height: 1; letter-spacing: -.06em; background: linear-gradient(transparent, #17191c70); }
.session-page .tile .shot .num { position: absolute; top: 12px; left: 12px; padding: 4px 8px; border-radius: 7px; background: #17191ccc; color: white; font-size: 11px; font-weight: 800; }
.session-page .tile .shot .kind { position: absolute; top: 12px; right: 12px; padding: 4px 8px; border-radius: 7px; background: #fff9; color: var(--brand-ink); font-size: 11px; font-weight: 750; }
.session-page .tile .body { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 21px; }
.session-page .tile h3 { font-size: 21px; font-weight: 720; letter-spacing: -.035em; line-height: 1.16; }
.session-page .tile p { flex: 1; color: var(--brand-muted); font-size: 14px; line-height: 1.5; }
.session-page .tile .row { display: flex; align-items: center; gap: 9px; margin-top: 11px; }
.session-page .tile .row .btn { min-height: 40px; padding: 8px 15px; font-size: 13px; }
.session-page .tile .pick[aria-pressed="true"] { background: var(--brand-ink); border-color: var(--brand-ink); color: white; }
.session-page .games .note { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 30px; margin-top: 24px; color: var(--brand-muted); font-size: 14px; }
.session-page .games .note a { color: var(--brand-ink); font-weight: 700; text-underline-offset: 4px; }

.session-page .how { padding: 76px 0 90px; background: #fff0eb; }
.session-page .how .steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 38px; }
.session-page .how .step { padding-top: 19px; border-top: 2px solid var(--brand-ink); }
.session-page .how .step b { display: block; margin-bottom: 25px; color: #a74139; font-size: 13px; font-weight: 800; }
.session-page .how .step h3 { font-size: 21px; font-weight: 720; letter-spacing: -.035em; }
.session-page .how .step p { max-width: 32ch; margin-top: 8px; color: #535258; font-size: 15px; }

.session-page .proof { padding: 90px 0; background: white; }
.session-page .proof .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: 76px; align-items: center; }
.session-page .proof h2 { max-width: 600px; margin: 12px 0 16px; font-size: clamp(33px, 3.5vw, 50px); font-weight: 730; line-height: 1.08; letter-spacing: -.055em; }
.session-page .proof p { max-width: 560px; color: var(--brand-muted); font-size: 17px; }
.session-page .proof .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.session-page .proof .who img { width: 56px; height: 56px; border-radius: 15px; object-fit: cover; }
.session-page .proof .who b, .session-page .proof .who span { display: block; }
.session-page .proof .who b { font-weight: 750; }
.session-page .proof .who span { color: var(--brand-muted); font-size: 13px; }
.session-page .replay { overflow: hidden; display: block; border: 1px solid var(--brand-line); border-radius: 18px; background: var(--brand-paper); text-decoration: none; }
.session-page .replay img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.session-page .replay .cap { padding: 15px 18px; font-size: 14px; font-weight: 650; }
.session-page .replay:hover .cap { text-decoration: underline; text-decoration-color: var(--brand-coral); text-underline-offset: 3px; }

.session-page .buy { padding: 94px 0; background: var(--brand-paper); scroll-margin-top: 80px; }
.session-page .buy .card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .83fr); gap: clamp(35px, 6vw, 90px); padding: clamp(30px, 5.5vw, 75px); border: 1px solid var(--brand-line); border-radius: 22px; background: white; }
.session-page .buy .left h2 { max-width: 620px; }
.session-page .buy .left > p { max-width: 550px; margin-top: 18px; color: var(--brand-muted); font-size: 18px; }
.session-page .buy ul { display: grid; gap: 13px; margin: 29px 0 0; padding: 0; list-style: none; }
.session-page .buy li { position: relative; padding-left: 27px; font-size: 15px; }
.session-page .buy li::before { content: "✓"; position: absolute; left: 0; color: #a74139; font-weight: 800; }
.session-page .buy .right { align-self: start; padding: 29px; border-radius: 18px; background: var(--brand-peach); }
.session-page .buy .price { font-size: clamp(54px, 5vw, 75px); font-weight: 760; line-height: 1; letter-spacing: -.07em; font-variant-numeric: tabular-nums; }
.session-page .buy .price small { margin-left: 7px; color: var(--brand-muted); font-size: 14px; font-weight: 550; letter-spacing: 0; }
.session-page .buy .price-note { margin-top: 6px; color: var(--brand-muted); font-size: 14px; }
.session-page .buy label { display: block; margin: 28px 0 8px; font-size: 14px; font-weight: 720; }
.session-page .buy select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #c5bfba; border-radius: 12px; background: white; color: var(--brand-ink); font-size: 15px; }
.session-page .buy .status { min-height: 23px; margin-top: 8px; color: var(--brand-muted); font-size: 13px; }
.session-page .buy .btn.big { width: 100%; min-height: 54px; margin-top: 13px; font-size: 16px; }
.session-page .buy .caveat { margin-top: 20px; color: #55565a; font-size: 13px; line-height: 1.5; }

.session-page .faq { padding: 5px 0 96px; background: var(--brand-paper); }
.session-page .faq .wrap { max-width: 880px; }
.session-page .faq h2 { margin: 0 0 18px; font-size: clamp(30px, 3vw, 43px); }
.session-page .faq details { padding: 21px 0; border-bottom: 1px solid var(--brand-line); }
.session-page .faq summary { display: flex; justify-content: space-between; gap: 20px; font-size: 17px; font-weight: 700; cursor: pointer; }
.session-page .faq summary::after { content: "+"; color: #a74139; font-size: 23px; font-weight: 500; line-height: 1; }
.session-page .faq details[open] summary::after { content: "−"; }
.session-page .faq details p { max-width: 74ch; margin-top: 12px; color: var(--brand-muted); font-size: 15px; }

.session-page .bar-mobile { display: none; }
.session-page .demo { width: min(950px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 1px solid var(--brand-line); border-radius: 19px; background: white; color: var(--brand-ink); box-shadow: 0 30px 90px #17191c45; }
.session-page .demo::backdrop { background: #17191caa; }
.session-page .demo .head, .session-page .demo .foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 18px; }
.session-page .demo .head { border-bottom: 1px solid var(--brand-line); }
.session-page .demo .head h2 { font-size: 19px; font-weight: 700; }
.session-page .demo .close { min-height: 37px; padding: 5px 12px; border: 1px solid var(--brand-line); border-radius: 9px; background: white; }
.session-page .demo .mount { aspect-ratio: 16/10; max-height: 63dvh; background: #17191c; }
.session-page .demo .mount iframe { display: block; width: 100%; height: 100%; border: 0; }
.session-page .demo .foot { flex-wrap: wrap; border-top: 1px solid var(--brand-line); }
.session-page .demo .foot a { font-size: 14px; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .session-page .hero .wrap, .session-page .proof .wrap, .session-page .buy .card { grid-template-columns: 1fr; }
  .session-page .hero .wrap { gap: 45px; }
  .session-page .hero .cab { max-width: 660px; }
  .session-page .games .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .session-page .buy .right { max-width: 600px; }
}
@media (max-width: 650px) {
  .session-page main { padding-top: 70px; }
  .session-page .wrap { width: calc(100% - 36px); }
  .session-page .hero { padding: 56px 0 62px; }
  .session-page .hero h1 { font-size: clamp(49px, 13vw, 70px); }
  .session-page .hero .lead { font-size: 17px; }
  .session-page .hero .cta .btn { width: 100%; }
  .session-page .anchor .wrap { grid-template-columns: 1fr; gap: 20px; padding-block: 27px; }
  .session-page .anchor strong { font-size: 19px; }
  .session-page .games { padding: 68px 0 60px; }
  .session-page .games .grid { grid-template-columns: 1fr; gap: 15px; margin-top: 28px; }
  .session-page .tile .shot { aspect-ratio: 16/8; }
  .session-page .tile .body { padding: 18px; }
  .session-page .how { padding: 65px 0; }
  .session-page .how .steps { grid-template-columns: 1fr; gap: 28px; }
  .session-page .how .step b { margin-bottom: 14px; }
  .session-page .proof { padding: 68px 0; }
  .session-page .proof .wrap { gap: 32px; }
  .session-page .buy { padding: 70px 0; }
  .session-page .buy .card { padding: 23px; }
  .session-page .buy .right { padding: 23px; }
  .session-page .faq { padding-bottom: 65px; }
  .session-page .bar-mobile { position: fixed; z-index: 50; inset: auto 0 0; display: flex; align-items: center; justify-content: space-between; gap: 13px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--brand-line); background: #fffffff2; backdrop-filter: blur(16px); }
  .session-page .bar-mobile b, .session-page .bar-mobile small { display: block; }
  .session-page .bar-mobile b { font-size: 18px; line-height: 1.1; }
  .session-page .bar-mobile small { color: var(--brand-muted); font-size: 11px; }
  .session-page .bar-mobile .btn { min-height: 43px; padding: 8px 13px; white-space: nowrap; }
  .session-page { padding-bottom: 66px; }
  .session-page .demo .mount { aspect-ratio: 3/4; }
}
@media (prefers-reduced-motion: reduce) {
  .session-page .btn, .session-page .tile { transition: none; }
}
