:root {
  --ink: #101423;
  --muted: #687084;
  --line: rgba(17, 24, 39, 0.12);
  --surface: #ffffff;
  --social-blue: #125bff;
  --social-green: #16b86f;
  --social-red: #ff4b3f;
  --social-purple: #6f2de2;
  --social-yellow: #f9b51c;
  --pantry-bg: #f7f4ea;
  --pantry-ink: #0e2b20;
  --pantry-muted: #65736b;
  --pantry-green: #075f43;
  --pantry-sage: #e8f2e8;
  --pantry-line: rgba(14, 43, 32, 0.12);
  --radius: 26px;
  --shadow: 0 24px 70px rgba(20, 28, 45, 0.12);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --heat: 0;
  --warmth: 0;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f6fb;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #7aa7ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hub-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(18, 91, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(7, 95, 67, 0.14), transparent 26rem),
    #f5f6f3;
}

.hub-shell {
  width: min(960px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hub-shell h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.hub-shell p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.6;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.hub-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.07);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
}

.hub-card--social {
  background:
    linear-gradient(135deg, rgba(18, 91, 255, 0.12), transparent 54%),
    #fff;
}

.hub-card--pantry {
  background:
    linear-gradient(135deg, rgba(7, 95, 67, 0.12), transparent 54%),
    #fffdf7;
}

.hub-card span,
.eyebrow {
  color: var(--social-blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hub-card strong {
  max-width: 22ch;
  font-size: 1.35rem;
  line-height: 1.1;
}

.site-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.social-page {
  background:
    radial-gradient(circle at 50% 14%, rgba(18, 91, 255, 0.045), transparent 31rem),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 50%, #f6faff 100%);
}

.pantry-page {
  color: var(--pantry-ink);
  background:
    linear-gradient(135deg, rgba(217, 154, 61, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(7, 95, 67, 0.08), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, var(--pantry-bg) 58%, #eef4ec 100%);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(31, 41, 55, calc(0.07 + var(--heat) * 0.05));
  backdrop-filter: blur(16px);
}

.social-page .site-nav {
  width: min(1280px, calc(100% - 96px));
  margin-top: 0;
  padding: 28px 0 18px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav nav {
  display: flex;
  gap: 24px;
  color: #242a3a;
  font-size: 0.88rem;
  font-weight: 720;
}

.site-nav nav a {
  opacity: 0.75;
}

.site-nav nav a:hover {
  opacity: 1;
}

.brand {
  font-size: 1rem;
  font-weight: 950;
}

.brand--playtuck {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
}

.brand-mark-shell {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark-shell img {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 9px 14px rgba(7, 23, 45, 0.18));
}

.brand-wordmark {
  line-height: 1;
  color: #080c18;
  font-size: 1.18rem;
  font-weight: 950;
}

.brand-wordmark-play,
.brand-wordmark-tuck {
  letter-spacing: 0;
}

.brand-wordmark-tuck {
  color: var(--social-blue);
}

.brand--pantry {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 160ms var(--ease),
    box-shadow 160ms var(--ease),
    background 160ms var(--ease);
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--social-blue);
  box-shadow: 0 10px 24px rgba(18, 91, 255, 0.24);
}

.nav-cta--pantry,
.button--pantry {
  color: #fffdf7;
  background: var(--pantry-green);
  box-shadow: 0 14px 28px rgba(7, 95, 67, 0.2);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px) scale(0.99);
}

.button {
  min-width: 150px;
  padding: 0 22px;
}

.button--social {
  color: #fff;
  background: var(--social-blue);
  box-shadow: 0 16px 30px rgba(18, 91, 255, 0.24);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #182033;
  font-weight: 850;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
}

.text-link--pantry {
  color: var(--pantry-green);
}

.social-hero,
.pantry-hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 100px) 0 72px;
}

.social-hero {
  width: min(1280px, calc(100% - 96px));
  min-height: clamp(650px, calc(100svh - 170px), 720px);
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding-top: clamp(8px, 2vw, 22px);
  padding-bottom: 0;
  text-align: center;
  overflow: visible;
}

.social-hero .hero-copy {
  position: relative;
  z-index: 12;
  width: min(900px, 100%);
  justify-self: center;
}

.social-hero .hero-copy .hero-lede,
.social-hero .hero-copy .hero-note {
  margin-left: auto;
  margin-right: auto;
}

.social-hero .hero-actions {
  justify-content: center;
  margin-top: 18px;
}

.hero-copy h1,
.pantry-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(4.1rem, 10vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.social-hero .hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(4rem, 7.4vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.social-hero .hero-brand-title {
  color: #070b16;
  letter-spacing: 0;
}

.social-hero .hero-brand-title .brand-wordmark-tuck {
  color: var(--social-blue);
}

.social-hero .hero-lede {
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.18;
}

.social-hero .hero-note {
  margin-top: 14px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.social-page .heat-field {
  display: none;
}

.pantry-copy h1 {
  max-width: 9ch;
  color: var(--pantry-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 820;
}

.hero-note {
  max-width: 31rem;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.pantry-page .hero-note,
.pantry-page .section-heading p,
.pantry-page p {
  color: var(--pantry-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.heat-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.heat-dot,
.heat-line {
  position: absolute;
  display: block;
  opacity: calc(0.5 + var(--heat) * 0.38);
  transform: translate3d(0, calc(var(--heat) * -20px), 0) rotate(calc(var(--heat) * 26deg));
}

.heat-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.heat-line {
  width: 44px;
  height: 10px;
  border-radius: 999px;
}

.heat-dot--one {
  top: 20%;
  left: 4%;
  background: var(--social-red);
}

.heat-dot--two {
  top: 23%;
  right: 8%;
  background: var(--social-blue);
}

.heat-dot--three {
  top: 62%;
  left: 10%;
  border: 5px solid var(--social-yellow);
}

.heat-line--one {
  top: 38%;
  left: 5%;
  background: var(--social-green);
}

.heat-line--two {
  top: 42%;
  right: 5%;
  background: var(--social-purple);
}

.social-stage,
.pantry-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.social-stage {
  width: min(1180px, 100%);
  min-height: clamp(398px, 44svh, 460px);
  justify-self: center;
  margin-top: clamp(72px, 6vw, 92px);
  perspective: 1400px;
  isolation: isolate;
}

.social-stage::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -4%;
  height: 28%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(18, 91, 255, 0.18), rgba(22, 184, 111, 0.16), rgba(255, 75, 63, 0.14)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 28px 90px rgba(18, 91, 255, calc(0.12 + var(--heat) * 0.08)),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: perspective(900px) rotateX(64deg) translateY(calc(var(--heat) * -8px));
  z-index: 0;
}

.social-stage::before,
.social-stage .stage-glow {
  display: none;
}

.stage-glow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 1%;
  height: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 91, 255, 0.08), rgba(255, 255, 255, 0.6), rgba(255, 75, 63, 0.08));
  filter: blur(18px);
  transform: translateY(calc(var(--heat) * -10px));
  z-index: 0;
}

.stage-table {
  position: absolute;
  z-index: 2;
  width: min(430px, 47vw);
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(var(--heat) * -12px));
  filter: drop-shadow(0 28px 34px rgba(17, 24, 39, 0.18));
  pointer-events: none;
}

.social-stage .stage-table,
.social-stage .stage-confetti,
.social-stage .phone-connector,
.social-stage .asset-card,
.social-stage .stage-chip {
  display: none;
}

.stage-confetti {
  position: absolute;
  z-index: 1;
  width: min(520px, 54vw);
  bottom: 0;
  left: 50%;
  opacity: calc(0.38 + var(--heat) * 0.2);
  transform: translateX(-50%) translateY(calc(var(--heat) * -26px)) scale(1.05);
  pointer-events: none;
}

.phone-connector {
  position: absolute;
  z-index: 3;
  top: 51%;
  width: 210px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 91, 255, 0), rgba(18, 91, 255, 0.72), rgba(22, 184, 111, 0));
  box-shadow: 0 0 26px rgba(18, 91, 255, calc(0.22 + var(--heat) * 0.18));
  opacity: calc(0.58 + var(--heat) * 0.28);
}

.phone-connector--left {
  left: 26%;
  transform: rotate(13deg);
}

.phone-connector--right {
  right: 25%;
  transform: rotate(-12deg);
}

.phone {
  position: relative;
  z-index: 4;
  width: min(310px, 70vw);
  border: 8px solid #101423;
  border-radius: 42px;
  background: #111827;
  box-shadow:
    0 30px 90px rgba(15, 23, 42, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
}

.phone--social {
  position: absolute;
  left: 50%;
  bottom: -88px;
  z-index: 7;
  width: clamp(320px, 27vw, 385px);
  box-shadow:
    0 36px 90px rgba(15, 23, 42, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.22);
  transform: translateX(-50%) translateY(calc(var(--heat) * -18px)) rotate(calc(var(--heat) * -1deg));
}

.phone--social .phone-top {
  top: 17px;
  left: 28px;
  right: 28px;
}

.phone--social .phone-screen {
  min-height: clamp(440px, 36vw, 526px);
  padding: clamp(50px, 4.2vw, 62px) clamp(18px, 1.8vw, 24px) clamp(18px, 1.8vw, 24px);
  border-radius: 34px;
}

.phone--social .phone-screen h2 {
  margin: clamp(20px, 2vw, 30px) 0 18px;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
}

.phone--social .game-grid {
  gap: 16px;
}

.phone--social .game-card {
  min-height: clamp(82px, 6.3vw, 108px);
  padding: 17px;
  border-radius: 22px;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.phone--social .phone-action {
  min-height: 54px;
  margin-top: 22px;
  font-size: 1.1rem;
}

.phone-top {
  position: absolute;
  top: 16px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #111827;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.phone--social .phone-time {
  display: none;
}

.phone-island {
  justify-self: center;
  width: 72px;
  height: 22px;
  border-radius: 999px;
  background: #0b0f18;
  box-shadow: inset 12px 0 18px rgba(255, 255, 255, 0.05);
}

.phone-status {
  display: none;
}

.phone-status::before,
.phone-status::after {
  content: "";
  position: absolute;
}

.phone-status::before {
  left: 0;
  bottom: 2px;
  width: 3px;
  height: 5px;
  border-radius: 2px;
  background: #111827;
  box-shadow:
    6px -2px 0 #111827,
    12px -4px 0 #111827;
}

.phone-status::after {
  right: 0;
  top: 3px;
  width: 20px;
  height: 9px;
  border: 2px solid #111827;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #111827 0 70%, transparent 70%),
    #fff;
}

.phone-screen {
  min-height: 500px;
  padding: 18px;
  border-radius: 34px;
  background: #fbfcff;
}

.phone-screen--image,
.side-phone-screen--image {
  padding: 0;
  overflow: hidden;
}

.phone-screen-picture,
.phone-screen-image {
  display: block;
  width: 100%;
  height: 100%;
}

.phone-screen-image {
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
}

.phone--social .phone-screen--image,
.side-phone .side-phone-screen--image {
  min-height: 0;
  padding: 0;
}

.mini-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1d2538;
  font-size: 0.78rem;
  font-weight: 850;
}

.mini-header b {
  padding: 6px 9px;
  border-radius: 999px;
  color: #125bff;
  background: #eaf0ff;
}

.phone-screen h2 {
  margin: 36px 0 18px;
  font-size: 1.2rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.game-card {
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 14px;
  border-radius: 18px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.05;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.game-card--blue {
  background: var(--social-blue);
}

.game-card--purple {
  background: var(--social-purple);
}

.game-card--red {
  background: var(--social-red);
}

.game-card--green {
  background: var(--social-green);
}

.phone-action {
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #101423;
  font-weight: 900;
}

.phone-action--pantry {
  background: var(--pantry-green);
}

.side-phone {
  position: absolute;
  z-index: 5;
  width: clamp(270px, 23vw, 335px);
  border: 7px solid #101423;
  border-radius: 40px;
  background: #111827;
  box-shadow:
    0 26px 64px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transform-style: preserve-3d;
}

.side-phone--left {
  left: calc(50% - 555px);
  top: auto;
  bottom: -58px;
  transform: translate3d(0, calc(var(--heat) * -8px), -80px) rotate(-4.5deg);
}

.side-phone--right {
  left: calc(50% + 230px);
  right: auto;
  top: auto;
  bottom: -58px;
  transform: translate3d(0, calc(var(--heat) * -10px), -70px) rotate(4.5deg);
}

.side-phone-top {
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #111827;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.side-phone .phone-island {
  width: 58px;
  height: 18px;
}

.side-phone .phone-status {
  width: 41px;
  height: 13px;
}

.side-phone .phone-status::before {
  transform: scale(0.85);
  transform-origin: left bottom;
}

.side-phone .phone-status::after {
  width: 17px;
  height: 8px;
  border-width: 1.5px;
}

.side-phone-screen {
  min-height: clamp(350px, 30vw, 454px);
  padding: clamp(52px, 4.5vw, 66px) clamp(16px, 1.55vw, 24px) clamp(16px, 1.55vw, 24px);
  border-radius: 33px;
  background: #fbfcff;
  text-align: left;
}

.side-phone-screen p {
  margin: 0 0 clamp(18px, 2vw, 34px);
  color: #1d2538;
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: 950;
}

.score-line {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 12px;
  margin-top: clamp(14px, 1.4vw, 22px);
  padding-left: 28px;
  color: #111827;
  font-weight: 800;
}

.score-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--score-color);
}

.score-line span,
.score-line strong {
  font-size: clamp(0.82rem, 0.95vw, 1.05rem);
}

.score-line i {
  grid-column: 1 / -1;
  display: block;
  width: var(--bar);
  height: 9px;
  border-radius: 999px;
  background: var(--score-color);
  box-shadow: 92px 0 0 rgba(226, 232, 240, 0.95);
}

.score-line--blue {
  --score-color: var(--social-blue);
}

.score-line--green {
  --score-color: var(--social-green);
}

.score-line--red {
  --score-color: var(--social-red);
}

.score-line--purple {
  --score-color: var(--social-purple);
}

.side-phone-screen--round {
  display: grid;
  align-content: start;
}

.side-phone-screen--round strong {
  display: block;
  margin: 6px 0 24px;
  padding: clamp(30px, 3.4vw, 48px) 16px;
  border-radius: 20px;
  color: #fff;
  background: var(--social-blue);
  font-size: clamp(1.25rem, 1.45vw, 1.72rem);
  line-height: 1.05;
  text-align: center;
}

.side-phone-screen--round small {
  color: var(--muted);
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  font-weight: 800;
  text-align: center;
}

.side-phone-screen--round em {
  margin: clamp(24px, 2.5vw, 36px) 0 10px;
  color: #111827;
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.side-phone-screen--round code {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid #dbe4f3;
  border-radius: 16px;
  color: var(--social-blue);
  background: #fff;
  font-family: inherit;
  font-size: clamp(1.2rem, 1.55vw, 1.7rem);
  font-weight: 950;
  letter-spacing: 0.16em;
}

.side-phone-screen--round code span {
  letter-spacing: 0;
  font-size: 0.9rem;
}

.social-float {
  position: absolute;
  z-index: 5;
  width: 170px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.social-float span,
.social-float small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.social-float--score {
  left: 9%;
  top: 15%;
  transform: rotate(-9deg) translateY(calc(var(--heat) * -10px));
}

.social-float--score b {
  display: block;
  margin-top: 10px;
  font-size: 0.74rem;
}

.social-float--score i {
  display: block;
  width: var(--bar);
  height: 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--social-blue), var(--social-green));
}

.social-float--round {
  right: 8%;
  top: 22%;
  transform: rotate(8deg) translateY(calc(var(--heat) * -14px));
}

.social-float--round strong {
  display: block;
  margin: 12px 0 8px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: var(--social-blue);
}

.asset-card {
  position: absolute;
  z-index: 3;
  width: 180px;
  margin: 0;
  border-radius: 28px;
  filter: drop-shadow(0 20px 28px rgba(17, 24, 39, 0.16));
  opacity: 0.98;
  pointer-events: none;
}

.asset-card--left {
  left: 22%;
  bottom: -1%;
  transform: rotate(-7deg) translateY(calc(var(--heat) * -16px));
}

.asset-card--right {
  right: 21%;
  bottom: 0;
  transform: rotate(8deg) translateY(calc(var(--heat) * -20px));
}

.stage-chip {
  position: absolute;
  z-index: 8;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #182033;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 900;
  animation: soft-float 5.8s var(--ease) infinite;
}

.stage-chip--one {
  left: 29%;
  top: 10%;
}

.stage-chip--two {
  right: 28%;
  top: 14%;
  animation-delay: -2.2s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.trust-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip--pantry {
  border-color: var(--pantry-line);
  background: rgba(232, 242, 232, 0.58);
}

.trust-strip--pantry span {
  color: var(--pantry-muted);
  border-color: var(--pantry-line);
}

.social-mock {
  position: relative;
  z-index: 20;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
}

.mock-lifestyle {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-inline: 18px;
  transform: translateY(22px);
}

.mock-lifestyle article {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 22px;
  background: #0c1b36;
  box-shadow: 0 18px 42px rgba(13, 27, 58, 0.16);
}

.mock-lifestyle article:nth-child(2),
.mock-lifestyle article:nth-child(4) {
  transform: translateY(-14px) rotate(1deg);
}

.mock-lifestyle article:nth-child(1),
.mock-lifestyle article:nth-child(3) {
  transform: rotate(-1deg);
}

.mock-lifestyle img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  opacity: 0.9;
}

.mock-lifestyle span {
  position: absolute;
  left: 16px;
  bottom: 10px;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  color: #fff;
  background: #092a63;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.mock-wave {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 48px max(48px, calc((100vw - 1240px) / 2)) 54px;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(18, 91, 255, 0.26), transparent 22rem),
    radial-gradient(circle at 82% 48%, rgba(18, 91, 255, 0.18), transparent 20rem),
    linear-gradient(90deg, #061d43, #03142d 58%, #061d43);
  box-shadow: none;
}

.mock-wave::before,
.mock-wave::after {
  display: none;
}

.mock-wave article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 170px;
  padding: 0 38px;
  text-align: center;
}

.mock-wave article + article {
  border-left: 2px dotted rgba(255, 255, 255, 0.34);
}

.mock-icon {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 14px;
  background: var(--icon-color, #4e8bff);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  mask: var(--icon-mask) center / contain no-repeat;
}

.mock-icon::before,
.mock-icon::after {
  content: "";
  position: absolute;
  display: none;
}

.mock-icon--people {
  width: 50px;
  height: 43px;
  margin-top: 0;
  margin-bottom: 19px;
  --icon-color: #4e8bff;
  --icon-mask: url("./assets/icons/groups-fill.svg");
}

.mock-icon--bolt {
  width: 37px;
  height: 49px;
  margin-top: 0;
  margin-bottom: 15px;
  --icon-color: #ffc12e;
  --icon-mask: url("./assets/icons/lightning-charge-fill.svg");
}

.mock-icon--shield {
  width: 44px;
  height: 46px;
  margin-top: 1px;
  margin-bottom: 17px;
  --icon-color: #4e8bff;
  --icon-mask: url("./assets/icons/shield-check.svg");
}

.mock-icon--trophy {
  width: 45px;
  height: 45px;
  margin-top: 3px;
  margin-bottom: 16px;
  --icon-color: #ffc12e;
  --icon-mask: url("./assets/icons/trophy-fill.svg");
}

.mock-wave h3 {
  max-width: 12rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.22;
}

.mock-wave p {
  max-width: 10rem;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.mock-flow {
  width: min(1160px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 32px;
  text-align: center;
}

.mock-flow h2,
.mock-game-rail h2 {
  margin: 0 0 30px;
  color: #101423;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1;
}

.mock-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.mock-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-rows: 52px 86px auto auto;
  gap: 7px;
  align-items: start;
  min-width: 0;
}

.mock-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -76px;
  width: 120px;
  height: 0;
  border-top: 3px dashed currentColor;
  border-radius: 0;
  opacity: 0.9;
  transform: none;
}

.mock-steps article:nth-child(1) {
  --step-color: var(--social-blue);
  color: var(--social-blue);
}

.mock-steps article:nth-child(2) {
  --step-color: var(--social-green);
  color: var(--social-green);
}

.mock-steps article:nth-child(3) {
  --step-color: var(--social-purple);
  color: var(--social-purple);
}

.mock-steps article:nth-child(4) {
  --step-color: var(--social-red);
  color: var(--social-red);
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 4px solid currentColor;
  border-radius: 999px;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 950;
}

.flow-icon {
  position: relative;
  display: grid;
  width: 90px;
  height: 76px;
  place-items: center;
  margin: 2px auto 0;
  border: 2px solid rgba(16, 20, 35, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.88));
  box-shadow:
    0 16px 32px rgba(16, 20, 35, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.flow-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: var(--flow-icon-width, 58px);
  height: var(--flow-icon-height, 58px);
  transform: translate(-50%, -50%);
  background: var(--flow-icon-image) center / contain no-repeat;
}

.flow-icon::after {
  content: "";
  position: absolute;
  inset: auto 16px 10px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
}

.flow-icon--open {
  --flow-icon-image: url("./assets/icons/flow-open-clean.svg");
  --flow-icon-width: 70px;
  --flow-icon-height: 70px;
}

.flow-icon--pick {
  --flow-icon-image: url("./assets/icons/flow-pick-clean.svg");
  --flow-icon-width: 72px;
  --flow-icon-height: 72px;
}

.flow-icon--join {
  --flow-icon-image: url("./assets/icons/flow-join-clean.svg");
  --flow-icon-width: 70px;
  --flow-icon-height: 70px;
}

.flow-icon--play {
  --flow-icon-image: url("./assets/icons/flow-play-clean.svg");
  --flow-icon-width: 72px;
  --flow-icon-height: 72px;
}

.mock-steps h3 {
  margin: 0;
  color: #101423;
  font-size: 1.4rem;
}

.mock-steps p {
  margin: 0;
  color: var(--muted);
}

.mock-game-rail {
  position: relative;
  width: min(1280px, calc(100% - 96px));
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 26px 0 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mock-game-rail h2 {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  text-align: center;
}

.mock-game-rail button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12);
  color: #4b5563;
  font-size: 2rem;
  cursor: pointer;
}

.mock-games {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.mock-game {
  min-height: 102px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 14px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.13);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.mock-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(17, 24, 39, 0.18);
}

.mock-game img {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.mock-game span {
  align-self: end;
  font-size: 1.02rem;
  font-weight: 950;
}

.mock-game small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.mock-game--purple {
  background: linear-gradient(135deg, #6827e6, #4f16b9);
}

.mock-game--red {
  background: linear-gradient(135deg, #ff4139, #c91d2d);
}

.mock-game--green {
  background: linear-gradient(135deg, #19b975, #087c55);
}

.mock-game--yellow {
  background: linear-gradient(135deg, #ffbd21, #f18900);
}

.mock-game--pink {
  background: linear-gradient(135deg, #f04a98, #c82e77);
}

.mock-cta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(48px, 150px) 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 0;
  padding: 34px max(64px, calc((100vw - 1240px) / 2));
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.18), transparent 12rem),
    linear-gradient(90deg, #095bff, #0044d9);
  box-shadow: 0 24px 60px rgba(9, 91, 255, 0.2);
}

.cta-party-icon {
  display: block;
  width: clamp(92px, 8.5vw, 128px);
  aspect-ratio: 1;
  background: url("./assets/social/cta-party-popper-v3.png") center / contain no-repeat;
  filter: drop-shadow(0 18px 24px rgba(0, 21, 86, 0.22));
}

.mock-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.mock-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.mock-cta .button {
  min-width: 240px;
  color: var(--social-blue);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 31, 108, 0.22);
}

.section,
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.social-page .faq-section {
  min-height: auto;
  padding: 54px 0 30px;
}

.social-page .final-cta {
  margin-top: 16px;
  margin-bottom: 42px;
}

.section {
  min-height: clamp(520px, calc(86svh - 72px), 720px);
  display: grid;
  align-content: center;
  padding: clamp(34px, 5svh, 62px) 0;
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.final-cta h2,
.faq-section h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.pantry-page .section-heading h2,
.pantry-page .split-copy h2,
.pantry-page .final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.028em;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.moment-grid article,
.play-path article,
.control-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(18, 30, 55, 0.07);
}

.moment-card {
  min-height: 280px;
  display: grid;
  align-content: end;
}

.moment-card img {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 128px;
  max-height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(17, 24, 39, 0.14));
  transition: transform 260ms var(--ease);
}

.moment-card--wide img {
  width: 172px;
  right: -8px;
  top: 4px;
}

.moment-card:hover img {
  transform: translateY(-8px) rotate(2deg);
}

.moment-grid article:nth-child(2),
.moment-grid article:nth-child(4) {
  transform: translateY(28px);
}

.moment-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--social-blue);
  font-weight: 950;
}

.moment-grid h3,
.play-path span,
.control-card span {
  display: block;
  margin: 20px 0 8px;
  font-size: 1.2rem;
  font-weight: 950;
}

.moment-grid p,
.play-path p,
.control-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.social-flow {
  position: relative;
}

.play-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.play-path::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(18, 91, 255, 0.35) 0 12px, transparent 12px 22px);
  transform: translateY(-50%);
}

.play-path article {
  position: relative;
  z-index: 1;
  min-height: 230px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.86));
}

.play-path article:hover {
  transform: translateY(-6px);
}

.play-path article img {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 118px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(18, 91, 255, 0.15));
}

.social-games,
.meal-plan-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.split-copy p,
.split-copy li {
  color: var(--muted);
  line-height: 1.7;
}

.split-copy ul {
  padding-left: 20px;
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  transform-style: preserve-3d;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.showcase-card:hover {
  transform: translateY(-10px) rotate(-1deg) scale(1.015);
  box-shadow: 0 30px 80px rgba(18, 91, 255, 0.18);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.showcase-card span {
  display: block;
  padding: 14px 18px 18px;
  font-weight: 900;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 34px;
}

.proof-panel--dark {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18, 91, 255, 0.22), transparent 36%),
    linear-gradient(300deg, rgba(255, 75, 63, 0.16), transparent 34%),
    linear-gradient(135deg, #0c1020, #151d32);
  box-shadow: 0 34px 90px rgba(12, 16, 32, 0.22);
}

.proof-panel--dark .eyebrow,
.proof-panel--dark li {
  color: rgba(255, 255, 255, 0.72);
}

.result-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: center;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 52%, rgba(18, 91, 255, 0.28), transparent 8rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.result-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.result-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  text-align: center;
}

.result-card button {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--social-blue);
  font-weight: 900;
}

.faq-section {
  max-width: 860px;
  text-align: center;
}

.faq-section details {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
}

.faq-section summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-section details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-section--pantry details {
  border-color: var(--pantry-line);
  background: rgba(255, 253, 247, 0.88);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 30px;
}

.final-cta--social {
  color: #101423;
  background:
    radial-gradient(circle at 14% 50%, rgba(18, 91, 255, 0.14), transparent 13rem),
    #ffffff;
  box-shadow: var(--shadow);
}

.final-cta--pantry {
  background:
    radial-gradient(circle at 4% 40%, rgba(7, 95, 67, 0.11), transparent 15rem),
    rgba(255, 253, 247, 0.88);
  box-shadow: 0 20px 56px rgba(14, 43, 32, 0.1);
}

.final-cta p {
  margin: 0;
  color: var(--muted);
}

.pantry-hero {
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
}

.pantry-stage {
  isolation: isolate;
  perspective: 1200px;
}

.pantry-stage::before {
  content: "";
  position: absolute;
  width: min(720px, 100%);
  height: min(520px, 84%);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(232, 242, 232, 0.82));
  box-shadow:
    0 24px 64px rgba(14, 43, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  z-index: -2;
}

.pantry-counter {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8%;
  height: 24%;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(217, 154, 61, 0.12), rgba(255, 253, 247, 0.86), rgba(7, 95, 67, 0.1)),
    rgba(255, 253, 247, 0.72);
  box-shadow:
    0 24px 70px rgba(14, 43, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: perspective(900px) rotateX(62deg);
  z-index: -1;
}

.pantry-leaf {
  position: absolute;
  z-index: -1;
  width: min(360px, 44vw);
  top: -9%;
  right: 2%;
  opacity: 0.34;
  filter: drop-shadow(0 20px 30px rgba(14, 43, 32, 0.12));
  pointer-events: none;
}

.plate {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(14, 43, 32, 0.16));
  pointer-events: none;
}

.plate--one {
  width: 350px;
  left: -12px;
  bottom: 62px;
}

.plate--two {
  width: 270px;
  right: 18px;
  bottom: 20px;
}

.phone--pantry {
  width: min(300px, 70vw);
  border-color: #111811;
  z-index: 4;
  box-shadow:
    0 34px 86px rgba(14, 43, 32, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: translateY(calc(var(--warmth) * -10px));
}

.pantry-screen {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.94), transparent 14rem),
    #fffdf7;
}

.pantry-screen .mini-header b {
  color: var(--pantry-green);
  background: var(--pantry-sage);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.ingredient-grid span {
  min-height: 86px;
  display: flex;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--pantry-line);
  border-radius: 18px;
  color: var(--pantry-ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
}

.pantry-jar {
  position: absolute;
  top: 50px;
  right: 0;
  width: 126px;
  height: 190px;
  border: 6px solid rgba(123, 78, 37, 0.28);
  border-radius: 36px 36px 44px 44px;
  background: rgba(255, 246, 222, 0.72);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.34);
}

.pantry-note {
  position: absolute;
  z-index: 5;
  min-width: 132px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 42px rgba(14, 43, 32, 0.13);
  backdrop-filter: blur(14px);
}

.pantry-note span {
  display: block;
  color: var(--pantry-muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pantry-note b {
  display: block;
  margin-top: 5px;
  color: var(--pantry-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.pantry-note--one {
  left: 6%;
  top: 24%;
  transform: translateY(calc(var(--warmth) * -8px)) rotate(-5deg);
}

.pantry-note--two {
  right: 4%;
  bottom: 28%;
  transform: translateY(calc(var(--warmth) * -12px)) rotate(4deg);
}

.pantry-jar span {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 14px;
  border-radius: 999px;
  background: #d99a3d;
}

.pantry-jar span:nth-child(1) {
  top: 70px;
}

.pantry-jar span:nth-child(2) {
  top: 96px;
}

.pantry-jar span:nth-child(3) {
  top: 122px;
}

.pantry-steps,
.pantry-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pantry-steps article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid var(--pantry-line);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 14px 36px rgba(14, 43, 32, 0.07);
}

.pantry-steps article img,
.control-card img {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 142px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(14, 43, 32, 0.12);
  transition: transform 260ms var(--ease);
}

.pantry-steps article:first-child img,
.control-card:first-child img {
  object-fit: contain;
  background: rgba(232, 242, 232, 0.35);
}

.pantry-steps article:hover img,
.control-card:hover img {
  transform: translateY(-8px) scale(1.02);
}

.pantry-steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: var(--pantry-green);
  background: var(--pantry-sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.pantry-steps h3 {
  margin: 22px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.pantry-steps p {
  line-height: 1.6;
}

.planner-board {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--pantry-line);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 26px 64px rgba(14, 43, 32, 0.14);
}

.planner-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
}

.planner-sidebar span {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--pantry-muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.planner-sidebar .active {
  color: var(--pantry-green);
  background: var(--pantry-sage);
}

.planner-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.planner-days article {
  overflow: hidden;
  border: 1px solid var(--pantry-line);
  border-radius: 18px;
  background: #fff;
}

.planner-days img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.planner-days span {
  display: block;
  padding: 12px;
  color: var(--pantry-green);
  font-weight: 900;
}

.control-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  align-content: end;
  border-color: var(--pantry-line);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 12px 28px rgba(14, 43, 32, 0.07);
}

.control-card span {
  color: var(--pantry-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.can-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.can-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .site-nav nav {
    display: none;
  }

  .social-hero,
  .pantry-hero,
  .social-games,
  .meal-plan-section,
  .proof-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .social-hero,
  .pantry-hero {
    padding-top: 48px;
  }

  .social-stage,
  .pantry-stage {
    min-height: 500px;
  }

  .social-stage {
    width: min(680px, 100%);
    min-height: 430px;
    margin-top: 28px;
  }

  .section {
    min-height: clamp(560px, calc(100svh - 86px), 720px);
    padding: clamp(34px, 5svh, 58px) 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .split-copy h2,
  .final-cta h2,
  .faq-section h2 {
    font-size: clamp(2rem, 6vw, 3.4rem);
  }

  .phone--social {
    width: min(260px, 42vw);
    bottom: -6px;
  }

  .side-phone {
    width: min(205px, 30vw);
    border-width: 7px;
    border-radius: 30px;
  }

  .stage-table {
    width: min(410px, 56vw);
  }

  .stage-confetti {
    width: min(500px, 62vw);
  }

  .phone-connector {
    width: 150px;
  }

  .phone-connector--left {
    left: 18%;
  }

  .phone-connector--right {
    right: 18%;
  }

  .stage-chip--one {
    left: 22%;
  }

  .stage-chip--two {
    right: 20%;
  }

  .side-phone-screen {
    min-height: 238px;
    padding: 12px;
    border-radius: 22px;
  }

  .side-phone--left {
    left: calc(50% - 286px);
    top: auto;
    bottom: 16px;
  }

  .side-phone--right {
    left: calc(50% + 86px);
    right: auto;
    top: auto;
    bottom: 16px;
  }

  .moment-grid,
  .play-path,
  .pantry-steps,
  .pantry-control,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .moment-grid,
  .play-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moment-grid article:nth-child(2),
  .moment-grid article:nth-child(4) {
    transform: none;
  }

  .play-path::before {
    display: none;
  }

  .social-float--score {
    left: 0;
  }

  .social-float--round {
    right: 0;
  }

  .asset-card {
    width: 140px;
  }

  .moment-card {
    min-height: 240px;
  }

  .moment-card img {
    width: 112px;
  }

  .play-path article {
    min-height: 190px;
  }

  .play-path article img {
    width: 98px;
    height: 86px;
  }

  .pantry-note {
    min-width: 118px;
    padding: 12px;
  }

  .pantry-note--one {
    left: 3%;
  }

  .pantry-note--two {
    right: 2%;
  }

  .pantry-steps article,
  .control-card {
    min-height: 220px;
  }

  .pantry-steps article img,
  .control-card img {
    width: 122px;
    height: 92px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .social-mock {
    width: min(100% - 20px, 1120px);
  }

  .mock-lifestyle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 16px;
    transform: translateY(18px);
  }

  .mock-wave {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 58px 24px 42px;
  }

  .mock-wave article:nth-child(3) {
    border-left: 0;
  }

  .mock-wave article {
    min-height: 136px;
  }

  .mock-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .mock-steps article::after {
    display: none;
  }

  .mock-game-rail {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .mock-game-rail button {
    display: none;
  }

  .mock-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-game:last-child {
    grid-column: 1 / -1;
  }

  .mock-cta {
    grid-template-columns: 74px 1fr;
    padding: 22px 24px;
  }

  .mock-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

}

@media (max-width: 620px) {
  .site-nav {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .social-hero,
  .pantry-hero,
  .section,
  .final-cta {
    width: min(100% - 24px, 1120px);
  }

  .section {
    min-height: auto;
    padding: 48px 0;
  }

  .hero-copy h1,
  .pantry-copy h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .pantry-copy h1 {
    margin: 8px 0 12px;
    font-size: clamp(3.15rem, 14vw, 4rem);
    line-height: 0.86;
  }

  .pantry-page .hero-lede {
    font-size: 1rem;
  }

  .pantry-page .hero-note {
    margin-top: 8px;
    line-height: 1.45;
  }

  .pantry-hero {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .social-stage,
  .pantry-stage {
    min-height: 430px;
  }

  .social-stage {
    width: 100%;
    min-height: 338px;
    margin-top: 10px;
  }

  .pantry-stage {
    min-height: 360px;
    overflow: hidden;
    border-radius: 28px;
  }

  .phone {
    width: min(232px, 70vw);
  }

  .phone-screen {
    min-height: 350px;
    padding: 12px;
    border-radius: 24px;
  }

  .phone--social {
    width: min(210px, 55vw);
    bottom: -6px;
  }

  .phone--social .phone-screen {
    min-height: 284px;
  }

  .phone--social .phone-screen h2 {
    margin: 18px 0 10px;
    font-size: 0.86rem;
  }

  .phone--social .game-grid {
    gap: 7px;
  }

  .phone--social .game-card {
    min-height: 54px;
    padding: 8px;
    border-radius: 13px;
    font-size: 0.64rem;
  }

  .phone--social .phone-action {
    min-height: 36px;
    margin-top: 12px;
    font-size: 0.72rem;
  }

  .phone--pantry {
    width: min(208px, 62vw);
  }

  .phone--pantry .phone-screen {
    min-height: 306px;
  }

  .side-phone {
    width: min(134px, 34vw);
    border-width: 5px;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  }

  .side-phone-top {
    padding: 6px 8px 4px;
    font-size: 0.48rem;
  }

  .side-phone .phone-island {
    width: 24px;
    height: 7px;
  }

  .side-phone-screen {
    min-height: 158px;
    padding: 8px;
    border-radius: 16px;
  }

  .side-phone-screen p {
    margin-bottom: 8px;
    font-size: 0.54rem;
  }

  .side-phone-screen--score b {
    margin-top: 7px;
    font-size: 0.5rem;
  }

  .side-phone-screen--score i {
    height: 5px;
    margin-top: 4px;
  }

  .side-phone-screen--round strong {
    padding: 12px 8px;
    border-radius: 13px;
    font-size: 0.64rem;
  }

  .side-phone-screen--round small {
    font-size: 0.5rem;
  }

  .side-phone--left {
    left: calc(50% - 190px);
    top: auto;
    bottom: 18px;
    transform: translate3d(0, calc(var(--heat) * -8px), -80px) rotate(-7deg);
  }

  .side-phone--right {
    left: calc(50% + 58px);
    right: auto;
    top: auto;
    bottom: 18px;
    transform: translate3d(0, calc(var(--heat) * -9px), -70px) rotate(7deg);
  }

  .phone-connector {
    top: 63%;
    width: 90px;
    height: 3px;
  }

  .phone-connector--left {
    left: 18%;
    transform: rotate(17deg);
  }

  .phone-connector--right {
    right: 18%;
    transform: rotate(-17deg);
  }

  .stage-table {
    width: min(270px, 68vw);
    bottom: -2%;
  }

  .stage-confetti {
    display: none;
  }

  .stage-chip {
    display: none;
  }

  .social-float {
    width: min(132px, calc(50vw - 16px));
    padding: 12px;
  }

  .social-float--score,
  .social-float--round {
    top: auto;
    bottom: 4%;
  }

  .social-float--score {
    left: 6px;
    transform: rotate(-4deg) translateY(calc(var(--heat) * -8px));
  }

  .social-float--round {
    right: 6px;
    transform: rotate(4deg) translateY(calc(var(--heat) * -10px));
  }

  .asset-card--left,
  .asset-card--right {
    display: none;
  }

  .moment-grid,
  .play-path,
  .game-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .moment-grid article,
  .play-path article,
  .control-card {
    padding: 16px;
    border-radius: 18px;
  }

  .moment-card {
    min-height: 218px;
  }

  .moment-card img {
    width: 90px;
    max-height: 84px;
    right: 8px;
    top: 8px;
  }

  .play-path article {
    min-height: 152px;
  }

  .play-path article img {
    width: 70px;
    height: 60px;
    top: 8px;
    right: 8px;
  }

  .moment-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.82rem;
  }

  .moment-grid h3,
  .play-path span,
  .control-card span {
    margin: 14px 0 6px;
    font-size: 1rem;
  }

  .showcase-card {
    border-radius: 18px;
  }

  .showcase-card img {
    aspect-ratio: 1;
  }

  .showcase-card span {
    padding: 10px;
    font-size: 0.76rem;
  }

  .planner-board {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .planner-sidebar {
    grid-template-columns: repeat(4, 1fr);
  }

  .planner-sidebar span {
    padding: 10px 8px;
    text-align: center;
  }

  .planner-days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .planner-days img {
    aspect-ratio: 0.95;
  }

  .planner-days span {
    padding: 8px;
    font-size: 0.72rem;
  }

  .pantry-steps {
    gap: 10px;
  }

  .pantry-counter {
    left: 0;
    right: 0;
    bottom: 7%;
  }

  .pantry-leaf {
    width: 230px;
    top: 2%;
    right: -36px;
    opacity: 0.22;
  }

  .pantry-note {
    display: none;
  }

  .plate--one {
    width: 180px;
    left: -44px;
    bottom: 54px;
  }

  .plate--two {
    width: 134px;
    right: -14px;
    bottom: 52px;
  }

  .pantry-steps article {
    min-height: 154px;
    padding: 16px;
    border-radius: 18px;
  }

  .pantry-steps article img,
  .control-card img {
    width: 76px;
    height: 58px;
    top: 10px;
    right: 10px;
    border-radius: 13px;
  }

  .pantry-steps span {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .pantry-steps h3 {
    margin: 12px 0 5px;
    font-size: 1.12rem;
  }

  .ingredient-grid {
    gap: 8px;
    margin-top: 18px;
  }

  .ingredient-grid span {
    min-height: 54px;
    padding: 9px;
    border-radius: 14px;
    font-size: 0.72rem;
  }

  .social-mock {
    width: 100%;
    margin-top: 0;
  }

  .mock-lifestyle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-inline: 12px;
    transform: translateY(12px);
  }

  .mock-lifestyle article {
    min-height: 92px;
    border-width: 3px;
    border-radius: 16px;
  }

  .mock-lifestyle img {
    height: 92px;
  }

  .mock-lifestyle span {
    left: 8px;
    bottom: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .mock-wave {
    grid-template-columns: 1fr;
    padding: 48px 18px 36px;
    border-radius: 0 0 28px 28px;
  }

  .mock-wave::before,
  .mock-wave::after {
    height: 22px;
  }

  .mock-wave article,
  .mock-wave article + article,
  .mock-wave article:nth-child(3) {
    min-height: auto;
    padding: 16px 10px;
    border-left: 0;
    border-top: 1px dotted rgba(255, 255, 255, 0.28);
  }

  .mock-wave article:first-child {
    border-top: 0;
  }

  .mock-icon {
    margin-bottom: 8px;
  }

  .mock-flow {
    padding: 34px 12px 18px;
  }

  .mock-flow h2,
  .mock-game-rail h2 {
    font-size: 1.6rem;
  }

  .mock-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    border-width: 3px;
    font-size: 1.2rem;
  }

  .mock-steps article {
    min-height: 158px;
  }

  .mock-steps .flow-icon {
    width: 86px;
    height: 76px;
  }

  .mock-steps h3 {
    font-size: 1.05rem;
  }

  .mock-game-rail {
    margin-inline: 12px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .mock-games {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mock-game,
  .mock-game:last-child {
    grid-column: auto;
    min-height: 76px;
  }

  .mock-cta {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 22px 16px;
    text-align: center;
  }

  .cta-party-icon {
    display: none;
  }

  .mock-cta h2 {
    font-size: 1.5rem;
  }

}

@media (max-width: 1100px) {
  .social-page .site-nav,
  .social-hero {
    width: min(100% - 48px, 1280px);
  }

  .social-hero .hero-copy h1 {
    font-size: clamp(4rem, 8.8vw, 6rem);
  }

  .phone--social {
    width: clamp(300px, 36vw, 370px);
  }

  .side-phone {
    width: clamp(240px, 29vw, 305px);
  }

  .side-phone--left {
    left: calc(50% - 410px);
  }

  .side-phone--right {
    left: calc(50% + 112px);
  }
}

@media (max-width: 900px) {
  .social-page .site-nav {
    width: calc(100% - 40px);
    padding: 22px 0 14px;
  }

  .social-hero {
    width: calc(100% - 32px);
    min-height: min(860px, calc(100svh - 62px));
    padding-top: 38px;
  }

  .social-stage {
    width: min(760px, 100%);
    min-height: 440px;
    margin-top: 22px;
  }

  .phone--social {
    width: min(320px, 41vw);
    bottom: -42px;
  }

  .phone--social .phone-screen {
    min-height: 450px;
    padding-top: 58px;
  }

  .side-phone {
    width: min(260px, 32vw);
  }

  .side-phone-screen {
    min-height: 340px;
    padding-top: 54px;
  }

  .side-phone--left {
    left: max(0px, calc(50% - 410px));
    bottom: -28px;
    transform: translate3d(0, calc(var(--heat) * -8px), -80px) rotate(-3deg);
  }

  .side-phone--right {
    left: auto;
    right: max(0px, calc(50% - 410px));
    bottom: -28px;
    transform: translate3d(0, calc(var(--heat) * -9px), -70px) rotate(3deg);
  }

  .mock-wave {
    padding: 44px 24px 46px;
  }

  .mock-flow,
  .mock-game-rail {
    width: calc(100% - 40px);
  }
}

@media (max-width: 620px) {
  .social-page .site-nav {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0 10px;
  }

  .social-page .brand {
    font-size: 0.92rem;
  }

  .social-hero {
    width: calc(100% - 24px);
    min-height: 760px;
    padding-top: 28px;
  }

  .social-hero .hero-copy h1 {
    margin: 12px 0 14px;
    font-size: clamp(3rem, 14.5vw, 4.1rem);
    line-height: 0.98;
  }

  .social-hero .hero-lede {
    font-size: 1.03rem;
    line-height: 1.2;
  }

  .social-hero .hero-note {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .social-hero .hero-actions {
    gap: 12px;
    margin-top: 18px;
  }

  .social-stage {
    min-height: 350px;
    margin-top: 28px;
  }

  .phone--social {
    width: min(184px, 50vw);
    bottom: -38px;
    border-width: 7px;
    border-radius: 32px;
  }

  .phone--social .phone-top {
    top: 11px;
    left: 18px;
    right: 18px;
    font-size: 0.56rem;
  }

  .phone--social .phone-island {
    width: 58px;
    height: 17px;
  }

  .phone--social .phone-status {
    width: 38px;
    transform: scale(0.78);
    transform-origin: right center;
  }

  .phone--social .phone-screen {
    min-height: 346px;
    padding: 42px 12px 12px;
    border-radius: 24px;
  }

  .phone--social .phone-screen--image {
    padding: 0;
  }

  .phone--social .phone-screen h2 {
    margin: 10px 0 8px;
  }

  .phone--social .game-card {
    min-height: 58px;
  }

  .side-phone {
    width: min(126px, 34vw);
    border-width: 5px;
    border-radius: 24px;
  }

  .side-phone-top {
    top: 8px;
    left: 11px;
    right: 11px;
    padding: 0;
    font-size: 0.42rem;
  }

  .side-phone .phone-island {
    width: 34px;
    height: 10px;
  }

  .side-phone .phone-status {
    display: none;
  }

  .side-phone-screen {
    min-height: 244px;
    padding: 32px 10px 10px;
    border-radius: 18px;
  }

  .side-phone-screen--image {
    padding: 0;
  }

  .side-phone--left {
    left: calc(50% - 160px);
    bottom: -52px;
    transform: translate3d(0, calc(var(--heat) * -8px), -80px) rotate(-4.5deg);
  }

  .side-phone--right {
    left: calc(50% + 34px);
    bottom: -52px;
    transform: translate3d(0, calc(var(--heat) * -9px), -70px) rotate(4.5deg);
  }

  .score-line {
    gap: 4px 7px;
    margin-top: 8px;
    padding-left: 16px;
  }

  .score-line::before {
    width: 8px;
    height: 8px;
  }

  .score-line span,
  .score-line strong {
    font-size: 0.5rem;
  }

  .score-line i {
    height: 5px;
    box-shadow: 44px 0 0 rgba(226, 232, 240, 0.95);
  }

  .side-phone-screen--round code {
    min-height: 30px;
    border-radius: 10px;
    font-size: 0.86rem;
  }

  .mock-wave {
    grid-template-columns: 1fr;
    padding: 38px 18px 40px;
    border-radius: 0;
  }

  .mock-flow,
  .mock-game-rail {
    width: calc(100% - 24px);
  }

  .mock-flow {
    padding-top: 38px;
  }

  .mock-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 24px 18px 26px;
    text-align: center;
  }

  .mock-cta .button {
    width: min(100%, 270px);
  }
}

@media (min-width: 1101px) {
  .social-hero {
    min-height: 720px;
  }

  .social-stage {
    min-height: 352px;
    margin-top: clamp(54px, 4.8vw, 68px);
  }

  .phone--social {
    width: clamp(370px, 28vw, 408px);
    bottom: -108px;
  }

  .phone--social .phone-screen {
    min-height: clamp(470px, 35vw, 512px);
    padding-top: 60px;
  }

  .phone--social .game-card {
    min-height: 96px;
  }

  .phone--social .phone-action {
    margin-top: 22px;
  }

  .side-phone {
    width: clamp(292px, 23.5vw, 340px);
  }

  .side-phone-screen {
    min-height: clamp(360px, 29vw, 430px);
    padding-top: 58px;
  }

  .side-phone--left {
    left: calc(50% - 535px);
    bottom: -58px;
    transform: translate3d(0, calc(var(--heat) * -8px), -80px) rotate(-2.5deg);
  }

  .side-phone--right {
    left: calc(50% + 195px);
    bottom: -58px;
    transform: translate3d(0, calc(var(--heat) * -10px), -70px) rotate(2.5deg);
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .social-page .site-nav {
    width: calc(100% - 20px);
    min-height: 54px;
    padding: 10px 0 8px;
  }

  .social-page .brand {
    font-size: 0.86rem;
  }

  .social-page .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .social-hero {
    width: calc(100% - 18px);
    min-height: calc(100svh - 58px);
    padding-top: 18px;
  }

  .social-hero .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .social-hero .hero-copy h1 {
    margin: 10px 0 11px;
    font-size: clamp(2.62rem, 12.8vw, 3.05rem);
    line-height: 0.98;
  }

  .social-hero .hero-lede {
    font-size: 0.9rem;
    line-height: 1.18;
  }

  .social-hero .hero-note {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .social-hero .hero-actions {
    margin-top: 12px;
  }

  .social-hero .button {
    min-height: 40px;
    padding-inline: 22px;
    font-size: 0.9rem;
  }

  .social-stage {
    min-height: 260px;
    margin-top: -4px;
  }

  .phone--social {
    width: min(156px, 42vw);
    bottom: -60px;
    border-width: 6px;
    border-radius: 28px;
  }

  .phone--social .phone-top {
    top: 9px;
    left: 16px;
    right: 16px;
  }

  .phone--social .phone-island {
    width: 50px;
    height: 14px;
  }

  .phone--social .phone-screen {
    min-height: 304px;
    padding: 34px 10px 10px;
    border-radius: 22px;
  }

  .phone--social .phone-screen--image {
    padding: 0;
  }

  .phone--social .mini-header {
    font-size: 0.58rem;
  }

  .phone--social .mini-header b {
    padding: 5px 8px;
  }

  .phone--social .phone-screen h2 {
    margin: 8px 0 7px;
    font-size: 0.78rem;
  }

  .phone--social .game-grid {
    gap: 6px;
  }

  .phone--social .game-card {
    min-height: 45px;
    padding: 7px;
    border-radius: 11px;
    font-size: 0.55rem;
  }

  .phone--social .phone-action {
    min-height: 31px;
    margin-top: 9px;
    font-size: 0.62rem;
  }

  .side-phone {
    width: min(106px, 29vw);
    border-width: 5px;
    border-radius: 22px;
  }

  .side-phone-top {
    top: 8px;
    left: 10px;
    right: 10px;
  }

  .side-phone .phone-island {
    width: 30px;
    height: 8px;
  }

  .side-phone-screen {
    min-height: 210px;
    padding: 28px 8px 8px;
    border-radius: 16px;
  }

  .side-phone-screen--image {
    padding: 0;
  }

  .side-phone-screen p {
    margin-bottom: 8px;
    font-size: 0.48rem;
  }

  .score-line {
    margin-top: 7px;
    padding-left: 13px;
  }

  .score-line span,
  .score-line strong {
    font-size: 0.44rem;
  }

  .side-phone-screen--round strong {
    padding: 11px 7px;
    font-size: 0.52rem;
  }

  .side-phone-screen--round em,
  .side-phone-screen--round small {
    font-size: 0.44rem;
  }

  .side-phone-screen--round code {
    min-height: 26px;
    font-size: 0.68rem;
  }

  .side-phone--left {
    left: calc(50% - 132px);
    bottom: -58px;
    transform: translate3d(0, calc(var(--heat) * -6px), -80px) rotate(-4deg);
  }

  .side-phone--right {
    left: calc(50% + 26px);
    bottom: -58px;
    transform: translate3d(0, calc(var(--heat) * -7px), -70px) rotate(4deg);
  }
}

.phone--social .phone-screen--image {
  min-height: 0;
  padding: 0;
  height: clamp(440px, 36vw, 526px);
}

.side-phone .side-phone-screen--image {
  min-height: 0;
  padding: 0;
  height: clamp(350px, 30vw, 454px);
}

@media (min-width: 1101px) {
  .phone--social .phone-screen--image {
    min-height: 0;
    padding: 0;
    height: clamp(470px, 35vw, 512px);
  }

  .side-phone .side-phone-screen--image {
    min-height: 0;
    padding: 0;
    height: clamp(360px, 29vw, 430px);
  }
}

@media (max-width: 900px) {
  .phone--social .phone-screen--image {
    min-height: 0;
    padding: 0;
    height: 450px;
  }

  .side-phone .side-phone-screen--image {
    min-height: 0;
    padding: 0;
    height: 340px;
  }
}

@media (max-width: 620px) {
  .social-mock {
    overflow: hidden;
  }

  .mock-wave {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 18px 14px 20px;
    background:
      radial-gradient(circle at 18% 16%, rgba(78, 139, 255, 0.18), transparent 10rem),
      radial-gradient(circle at 84% 84%, rgba(255, 193, 46, 0.11), transparent 9rem),
      linear-gradient(135deg, #061d43, #03142d 58%, #061d43);
  }

  .mock-wave article,
  .mock-wave article + article,
  .mock-wave article:nth-child(3) {
    min-height: 112px;
    padding: 14px 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .mock-wave article:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mock-icon,
  .mock-icon--people,
  .mock-icon--bolt,
  .mock-icon--shield,
  .mock-icon--trophy {
    width: 28px;
    height: 28px;
    margin: 0 0 9px;
    filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.2));
  }

  .mock-icon--people {
    height: 25px;
  }

  .mock-icon--bolt {
    width: 22px;
    height: 30px;
  }

  .mock-icon--shield,
  .mock-icon--trophy {
    height: 28px;
  }

  .mock-wave h3 {
    max-width: 9.2rem;
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .mock-wave p {
    max-width: 8.2rem;
    margin-top: 7px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .phone--social .phone-screen--image {
    min-height: 0;
    padding: 0;
    height: 346px;
  }

  .side-phone .side-phone-screen--image {
    min-height: 0;
    padding: 0;
    height: 244px;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .mock-wave {
    gap: 8px;
    padding: 14px 10px 16px;
  }

  .mock-wave article,
  .mock-wave article + article,
  .mock-wave article:nth-child(3) {
    min-height: 104px;
    padding: 12px 8px 11px;
    border-radius: 14px;
  }

  .mock-icon,
  .mock-icon--people,
  .mock-icon--bolt,
  .mock-icon--shield,
  .mock-icon--trophy {
    width: 25px;
    height: 25px;
    margin-bottom: 7px;
  }

  .mock-icon--people {
    height: 22px;
  }

  .mock-icon--bolt {
    width: 19px;
    height: 27px;
  }

  .mock-wave h3 {
    max-width: 8rem;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .mock-wave p {
    max-width: 7.4rem;
    margin-top: 5px;
    font-size: 0.66rem;
    line-height: 1.18;
  }

  .phone--social .phone-screen--image {
    min-height: 0;
    padding: 0;
    height: 304px;
  }

  .side-phone .side-phone-screen--image {
    min-height: 0;
    padding: 0;
    height: 210px;
  }
}

.mock-section-note {
  max-width: 46rem;
  margin: 0 auto;
  color: #647084;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 620;
  line-height: 1.35;
  text-align: center;
}

.mock-flow {
  width: min(1780px, calc(100% - 96px));
  padding: clamp(54px, 5vw, 76px) 0 clamp(62px, 6vw, 92px);
}

.mock-flow h2 {
  margin: 0;
  color: #071023;
  font-size: clamp(3.4rem, 5vw, 5.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.mock-game-rail h2 {
  margin: 0;
  color: #090f1f;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.18;
}

.mock-flow .mock-section-note {
  margin-top: clamp(14px, 1.4vw, 22px);
  font-size: clamp(1.18rem, 1.55vw, 1.78rem);
  font-weight: 520;
}

.mock-steps {
  --flow-gap: clamp(40px, 4.2vw, 74px);
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--flow-gap);
  margin-top: clamp(70px, 6vw, 98px);
}

.mock-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(clamp(68px, 4.8vw, 82px) + (clamp(150px, 9.35vw, 194px) / 2));
  right: clamp(150px, 10.5vw, 220px);
  left: clamp(150px, 10.5vw, 220px);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(13, 107, 255, 0.98) 0%,
    rgba(13, 107, 255, 0.92) 22%,
    rgba(0, 190, 122, 0.98) 38%,
    rgba(0, 190, 122, 0.82) 50%,
    rgba(111, 54, 235, 0.98) 66%,
    rgba(111, 54, 235, 0.82) 76%,
    rgba(255, 62, 70, 0.92) 100%
  );
  -webkit-mask: radial-gradient(circle, #000 0 2.45px, transparent 3px) 0 50% / 17px 6px repeat-x;
  mask: radial-gradient(circle, #000 0 2.45px, transparent 3px) 0 50% / 17px 6px repeat-x;
  filter: drop-shadow(0 5px 9px rgba(47, 140, 255, 0.12));
  opacity: 0.96;
  transform: translateY(-50%);
}

.mock-steps article.flow-card {
  position: relative;
  z-index: 1;
  grid-template-rows: auto auto auto;
  gap: 0;
  min-height: clamp(336px, 22vw, 430px);
  padding: clamp(68px, 4.8vw, 82px) clamp(24px, 2vw, 38px) clamp(34px, 2.5vw, 44px);
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(226, 233, 243, 0.4), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 254, 255, 0.96)),
    #fff;
  box-shadow:
    0 30px 72px rgba(15, 23, 42, 0.085),
    0 10px 22px rgba(15, 23, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.mock-steps article.flow-card:not(:last-child)::after {
  display: none;
}

.mock-steps article.flow-card:nth-child(1)::after {
  color: #49a4ff;
}

.mock-steps article.flow-card:nth-child(2)::after {
  color: #4cc7a0;
}

.mock-steps article.flow-card:nth-child(3)::after {
  color: #a56bed;
}

.flow-card .step-number {
  position: absolute;
  top: clamp(-38px, -2.75vw, -30px);
  left: 50%;
  width: clamp(58px, 4.35vw, 76px);
  height: clamp(58px, 4.35vw, 76px);
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.36), transparent 32%),
    var(--step-color, currentColor);
  box-shadow:
    0 20px 34px color-mix(in srgb, var(--step-color, currentColor) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  transform: translateX(-50%);
}

.flow-card .flow-icon {
  width: clamp(150px, 9.35vw, 194px);
  height: clamp(150px, 9.35vw, 194px);
  margin: 0 auto clamp(18px, 1.7vw, 30px);
  border: 1px solid rgba(15, 23, 42, 0.085);
  border-radius: clamp(24px, 2.15vw, 34px);
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.94));
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.075),
    0 6px 14px rgba(15, 23, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  overflow: visible;
}

.flow-card .flow-icon::before {
  width: var(--flow-icon-width, 78%);
  height: var(--flow-icon-height, 78%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 8px rgba(15, 23, 42, 0.16));
}

.flow-card .flow-icon::after {
  display: none;
}

.flow-card .flow-icon--open {
  --flow-icon-image: url("./assets/icons/generated-3d-flow-icon-only/flow-open-icon.png");
  --flow-icon-width: 108%;
  --flow-icon-height: 104%;
}

.flow-card .flow-icon--pick {
  --flow-icon-image: url("./assets/icons/generated-3d-flow-icon-only/flow-pick-icon.png");
  --flow-icon-width: 106%;
  --flow-icon-height: 106%;
}

.flow-card .flow-icon--join {
  --flow-icon-image: url("./assets/icons/generated-3d-flow-icon-only/flow-join-icon.png");
  --flow-icon-width: 106%;
  --flow-icon-height: 84%;
}

.flow-card .flow-icon--play {
  --flow-icon-image: url("./assets/icons/generated-3d-flow-icon-only/flow-play-icon.png");
  --flow-icon-width: 104%;
  --flow-icon-height: 104%;
}

.flow-card h3 {
  margin: 0 0 12px;
  color: #0b1020;
  font-size: clamp(1.78rem, 2.1vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
}

.flow-card p {
  max-width: 18rem;
  margin: 0 auto;
  color: #596579;
  font-size: clamp(1rem, 1.1vw, 1.22rem);
  font-weight: 650;
  line-height: 1.34;
}

.mock-game-rail {
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: clamp(34px, 4.5vw, 62px) 0 clamp(50px, 5.2vw, 78px);
  background:
    radial-gradient(circle at 50% 34%, rgba(99, 102, 241, 0.07), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 250, 252, 0.72));
}

.mock-games-heading {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.mock-games-heading .mock-section-note {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 620px) {
  .mock-game-rail h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .mock-games-heading .mock-section-note {
    font-size: 16px;
  }
}

.game-filter-row {
  width: fit-content;
  max-width: calc(100% - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: clamp(22px, 2.7vw, 34px) auto clamp(22px, 2.6vw, 36px);
  padding: 5px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.mock-game-rail .game-filter-pill {
  width: auto;
  height: 42px;
  min-width: 112px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: #5c6678;
  font-size: 1rem;
  font-weight: 850;
}

.mock-game-rail .game-filter-pill + .game-filter-pill {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
}

.mock-game-rail .game-filter-pill.is-active {
  color: var(--social-blue);
  background: #eef6ff;
  border-left-color: transparent;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(18, 91, 255, 0.08),
    0 7px 16px rgba(18, 91, 255, 0.08);
}

.game-carousel-shell {
  position: relative;
  --carousel-motion-ms: 920ms;
  width: min(1840px, 100%);
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  align-items: center;
  margin: clamp(24px, 2.8vw, 38px) auto 0;
}

.game-carousel-window {
  position: relative;
  min-height: clamp(400px, 29vw, 460px);
  outline: none;
  touch-action: pan-y;
}

.game-carousel-window:focus-visible {
  border-radius: 32px;
  box-shadow: 0 0 0 4px rgba(18, 91, 255, 0.16);
}

.game-carousel-track {
  position: absolute;
  inset: 0;
}

.game-template-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(236px, 16vw, 292px);
  min-height: clamp(250px, 17.5vw, 314px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94)),
    #ffffff;
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: #111827;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.76);
  will-change: transform, opacity, width, min-height;
  transition:
    transform var(--carousel-motion-ms, 920ms) cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease,
    width var(--carousel-motion-ms, 920ms) cubic-bezier(0.16, 1, 0.3, 1),
    min-height var(--carousel-motion-ms, 920ms) cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms ease;
}

.game-template-card.is-active,
.game-template-card.is-prev,
.game-template-card.is-next,
.game-template-card.is-far-prev,
.game-template-card.is-far-next {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.game-template-card.game-template-card--clone {
  pointer-events: none;
  cursor: default;
}

.game-template-card.is-active {
  z-index: 5;
  width: clamp(340px, 25vw, 440px);
  min-height: clamp(332px, 24vw, 404px);
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  border-color: rgba(18, 91, 255, 0.18);
  background:
    linear-gradient(180deg, #ffffff, #f8fbff 58%, #eef5ff),
    #ffffff;
  box-shadow:
    0 30px 64px rgba(15, 23, 42, 0.16),
    0 0 0 6px rgba(18, 91, 255, 0.035);
  transform: translate(-50%, -50%) scale(1);
}

.game-template-card.is-prev {
  z-index: 3;
  transform: translate(calc(-50% - min(25vw, 390px)), -50%) rotate(-3deg) scale(0.9);
}

.game-template-card.is-next {
  z-index: 3;
  transform: translate(calc(-50% + min(25vw, 390px)), -50%) rotate(3deg) scale(0.9);
}

.game-template-card.is-far-prev {
  z-index: 2;
  opacity: 0.68;
  transform: translate(calc(-50% - min(43vw, 680px)), -50%) rotate(-4deg) scale(0.8);
}

.game-template-card.is-far-next {
  z-index: 2;
  opacity: 0.68;
  transform: translate(calc(-50% + min(43vw, 680px)), -50%) rotate(4deg) scale(0.8);
}

.game-template-card.is-hidden-left {
  z-index: 1;
  opacity: 0;
  transform: translate(calc(-50% - min(72vw, 1120px)), -50%) rotate(-6deg) scale(0.78);
}

.game-template-card.is-hidden-right {
  z-index: 1;
  opacity: 0;
  transform: translate(calc(-50% + min(72vw, 1120px)), -50%) rotate(6deg) scale(0.78);
}

.game-template-card.is-teleporting {
  transition: none !important;
}

.game-template-art {
  position: relative;
  display: grid;
  min-height: clamp(108px, 8.8vw, 142px);
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  color: #7a8494;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 42%, rgba(148, 163, 184, 0.18), transparent 4.5rem),
    #e6ebf2;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
  font-weight: 950;
}

.game-template-art__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
  object-position: center;
}

.game-template-art__image--mobile {
  display: block;
}

@media (min-width: 901px) {
  .game-template-card.is-active .game-template-art__image--mobile {
    display: none;
  }

  .game-template-card.is-active .game-template-art__image--desktop {
    display: block;
  }
}

.game-template-card.is-active .game-template-art {
  min-height: clamp(136px, 11vw, 174px);
  border-radius: 18px;
  color: #667085;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 42%, rgba(18, 91, 255, 0.1), transparent 5.5rem),
    #e9eef6;
  font-size: 1.02rem;
}

.game-template-copy {
  display: grid;
  align-content: start;
  gap: 9px;
}

.game-template-card:not(.is-active) .game-template-copy {
  gap: 7px;
}

.game-template-card:not(.is-active) .game-template-detail,
.game-template-card:not(.is-active) .game-template-copy button {
  display: none;
}

.game-template-card.is-active .game-template-copy {
  padding: 2px 4px 5px;
}

.game-template-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.08rem, 1.18vw, 1.34rem);
  font-weight: 950;
  line-height: 1.02;
}

.game-template-card.is-active h3 {
  font-size: clamp(1.62rem, 2.05vw, 2.22rem);
}

.game-template-detail {
  margin: 0;
  color: #5b6576;
  font-weight: 760;
}

.game-template-card.is-active .game-template-detail {
  max-width: 22rem;
  color: #465468;
  font-size: clamp(1.02rem, 1.08vw, 1.16rem);
  line-height: 1.32;
}

.game-template-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: #647084;
}

.game-template-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #647084;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
}

.game-template-meta span + span {
  margin-left: 12px;
  padding-left: 14px;
}

.game-template-meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #a9b3c4;
  transform: translateY(-50%);
}

.game-template-copy button {
  width: fit-content;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 24px;
  border: 1px solid rgba(18, 91, 255, 0.34);
  border-radius: 999px;
  color: var(--social-blue);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(18, 91, 255, 0.08);
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
}

.game-template-card.is-active .game-template-copy button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mock-game-rail .carousel-arrow {
  position: relative;
  z-index: 8;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  color: #3f4a5f;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  font-size: 2.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.mock-game-rail .carousel-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.15);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.mock-game-rail .carousel-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8dee8;
  box-shadow: none;
  cursor: pointer;
  transition: width 200ms var(--ease), background 200ms var(--ease);
}

.mock-game-rail .carousel-dot.is-active {
  width: 30px;
  background: var(--social-blue);
}

.carousel-hint {
  margin: 18px auto 0;
  color: #687386;
  font-size: 1rem;
  font-weight: 750;
  text-align: center;
}

.social-section-heading {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.social-section-heading h2 {
  margin: 0;
  color: #071023;
  font-size: clamp(2.45rem, 4.2vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.social-section-heading p {
  max-width: 48rem;
  margin: 16px auto 0;
  color: #647084;
  font-size: clamp(1rem, 1.25vw, 1.24rem);
  font-weight: 620;
  line-height: 1.42;
}

.social-situations {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(58px, 6vw, 88px) 0 clamp(42px, 5vw, 70px);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: clamp(32px, 4vw, 54px);
}

.situation-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.situation-card img {
  width: 100%;
  height: clamp(156px, 13vw, 224px);
  object-fit: cover;
  background: #eef3fb;
}

.situation-card div {
  padding: clamp(18px, 1.7vw, 26px);
}

.situation-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--social-blue);
  background: #eef5ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.situation-card h3 {
  margin: 14px 0 8px;
  color: #0b1020;
  font-size: clamp(1.14rem, 1.25vw, 1.42rem);
  font-weight: 950;
  line-height: 1.08;
}

.situation-card p {
  margin: 0;
  color: #667085;
  font-weight: 650;
  line-height: 1.38;
}

.social-confidence {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 0 clamp(40px, 5vw, 72px);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 3.4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 91, 255, 0.08), transparent 18rem),
    #ffffff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.075);
}

.confidence-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 192px;
  padding: clamp(24px, 2.4vw, 34px);
}

.confidence-grid article + article {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.confidence-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: var(--confidence-color, var(--social-blue));
  -webkit-mask: var(--confidence-mask) center / contain no-repeat;
  mask: var(--confidence-mask) center / contain no-repeat;
  filter: drop-shadow(0 8px 12px color-mix(in srgb, var(--confidence-color, var(--social-blue)) 24%, transparent));
}

.confidence-icon--bolt {
  --confidence-color: var(--social-yellow);
  --confidence-mask: url("./assets/icons/lightning-charge-fill.svg");
}

.confidence-icon--shield {
  --confidence-color: var(--social-blue);
  --confidence-mask: url("./assets/icons/shield-check.svg");
}

.confidence-icon--people {
  --confidence-color: var(--social-green);
  --confidence-mask: url("./assets/icons/groups-fill.svg");
}

.confidence-icon--trophy {
  --confidence-color: var(--social-purple);
  --confidence-mask: url("./assets/icons/trophy-fill.svg");
}

.confidence-grid h3 {
  margin: 0 0 9px;
  color: #0b1020;
  font-size: clamp(1.08rem, 1.18vw, 1.32rem);
  font-weight: 950;
  line-height: 1.1;
}

.confidence-grid p {
  margin: 0;
  color: #647084;
  font-weight: 650;
  line-height: 1.4;
}

.social-faq {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 58px) 0 clamp(42px, 5vw, 72px);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(26px, 3vw, 38px);
}

.faq-list details {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 56px 18px 22px;
  color: #0b1020;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--social-blue);
  font-size: 1.45rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: #667085;
  font-weight: 650;
  line-height: 1.48;
}

.mock-cta-copy {
  min-width: 0;
}

.cta-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.cta-mini-points li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
  font-weight: 850;
}

  @media (max-width: 1100px) {
  .mock-flow {
    width: calc(100% - 64px);
    padding-top: clamp(78px, 10vw, 116px);
  }

  .mock-flow h2 {
    font-size: clamp(4.2rem, 8.8vw, 5.65rem);
  }

  .mock-flow .mock-section-note {
    margin-top: 18px;
    font-size: clamp(1.35rem, 2.65vw, 1.86rem);
  }

  .mock-steps {
    --flow-gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 92px var(--flow-gap);
    margin-top: 104px;
  }

  .mock-steps::before {
    display: none;
  }

  .mock-steps article.flow-card:not(:last-child)::after {
    display: none;
  }

  .mock-steps article.flow-card {
    min-height: clamp(448px, 53vw, 520px);
    padding: clamp(76px, 8vw, 92px) clamp(22px, 3vw, 38px) clamp(40px, 4.6vw, 54px);
  }

  .flow-card .flow-icon {
    width: clamp(196px, 24vw, 232px);
    height: clamp(196px, 24vw, 232px);
  }

  .flow-card h3 {
    font-size: clamp(2.2rem, 4vw, 2.7rem);
  }

  .flow-card p {
    max-width: 22rem;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.28;
  }

  .game-carousel-shell {
    grid-template-columns: 64px minmax(0, 1fr) 64px;
  }

  .game-template-card.is-active {
    width: min(410px, 42vw);
  }

  .game-template-card.is-prev {
    transform: translate(calc(-50% - min(30vw, 350px)), -50%) rotate(-3deg) scale(0.84);
  }

  .game-template-card.is-next {
    transform: translate(calc(-50% + min(30vw, 350px)), -50%) rotate(3deg) scale(0.84);
  }
}

@media (max-width: 900px) {
  .mock-flow {
    width: calc(100% - 48px);
    padding-top: 60px;
  }

  .mock-flow h2 {
    font-size: clamp(3.4rem, 8.4vw, 4.6rem);
  }

  .mock-flow .mock-section-note {
    margin-top: 14px;
    font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  }

  .mock-steps {
    --flow-gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 76px var(--flow-gap);
    margin-top: 74px;
  }

  .mock-steps article.flow-card:not(:last-child)::after {
    display: none;
  }

  .mock-steps article.flow-card {
    min-height: clamp(334px, 48vw, 430px);
    padding: clamp(62px, 8vw, 76px) clamp(16px, 3vw, 30px) clamp(30px, 4vw, 42px);
  }

  .flow-card .flow-icon {
    width: clamp(152px, 22vw, 198px);
    height: clamp(152px, 22vw, 198px);
  }

  .mock-game-rail .carousel-arrow {
    display: grid;
  }

  .game-filter-row {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .mock-game-rail .game-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding-inline: 18px;
  }
}

@media (max-width: 620px) {
  .mock-flow {
    width: calc(100% - 24px);
    padding: 42px 0 46px;
  }

  .mock-flow h2 {
    font-size: clamp(2.65rem, 13vw, 3.45rem);
  }

  .mock-game-rail h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .mock-section-note {
    font-size: 1rem;
  }

  .mock-steps {
    gap: 56px 10px;
    margin-top: 58px;
  }

  .mock-steps article.flow-card {
    min-height: 260px;
    padding: 48px 10px 22px;
    border-radius: 22px;
  }

  .flow-card .step-number {
    width: 54px;
    height: 54px;
    top: -27px;
    font-size: 1.28rem;
  }

  .flow-card .flow-icon {
    width: clamp(96px, 27vw, 116px);
    height: clamp(96px, 27vw, 116px);
    margin-bottom: 12px;
    border-radius: 22px;
  }

  .flow-card .flow-icon::before {
    transform: translate(-50%, -50%);
  }

  .flow-card h3 {
    margin-bottom: 8px;
    font-size: 1.42rem;
  }

  .flow-card p {
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .mock-game-rail {
    padding: 34px 0 44px;
  }

  .mock-games-heading {
    width: calc(100% - 24px);
  }

  .game-filter-row {
    max-width: calc(100% - 24px);
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .mock-game-rail .game-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 82px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .game-carousel-shell {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .game-carousel-window {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
  }

  .mock-game-rail .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
    transform: translateY(-50%);
  }

  .mock-game-rail .carousel-arrow:hover {
    transform: translateY(-50%);
  }

  .carousel-arrow--prev {
    left: 10px;
  }

  .carousel-arrow--next {
    right: 10px;
  }

  .game-template-card {
    width: 216px;
    min-height: 248px;
    border-radius: 18px;
  }

  .game-template-card.is-active {
    width: min(286px, 76vw);
    min-height: 332px;
    grid-template-columns: 1fr;
    grid-template-rows: 126px auto;
    gap: 13px;
    padding: 13px;
    border-radius: 22px;
  }

  .game-template-card.is-active .game-template-copy {
    padding: 0 3px 3px;
  }

  .game-template-card.is-active h3 {
    font-size: 1.5rem;
  }

  .game-template-card.is-active .game-template-detail {
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .game-template-copy button {
    min-height: 42px;
    margin-top: 4px;
    padding-inline: 18px;
  }

  .game-template-card.is-prev {
    opacity: 0.7;
    transform: translate(calc(-50% - 48vw), -50%) rotate(-4deg) scale(0.76);
  }

  .game-template-card.is-next {
    opacity: 0.7;
    transform: translate(calc(-50% + 48vw), -50%) rotate(4deg) scale(0.76);
  }

  .game-template-card.is-far-prev,
  .game-template-card.is-far-next {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .mock-flow {
    padding-top: 24px;
  }

  .mock-steps {
    gap: 50px 8px;
  }

  .mock-steps article.flow-card {
    min-height: 232px;
    padding: 42px 8px 18px;
  }

  .flow-card .flow-icon {
    width: clamp(104px, 31vw, 128px);
    height: clamp(104px, 31vw, 128px);
    margin-bottom: 10px;
  }

  .game-carousel-window {
    min-height: 328px;
  }

  .game-template-card.is-active {
    min-height: 316px;
    grid-template-rows: 108px auto;
  }

  .game-template-card.is-active .game-template-copy {
    padding: 0 2px 2px;
    gap: 6px;
  }

  .game-template-card.is-active .game-template-detail {
    font-size: 0.8rem;
    line-height: 1.18;
  }

  .game-template-meta span {
    min-height: 20px;
    font-size: 0.76rem;
  }

  .game-template-meta span + span {
    margin-left: 10px;
    padding-left: 12px;
  }

  .game-template-copy button {
    min-height: 38px;
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .can-reveal .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .stage-chip {
    animation: none;
  }
}

/* Final social conversion-section polish. Kept late in the file to override older mock passes. */
.social-page {
  --social-ink: #080f20;
  --social-soft: #f5f8fc;
  --social-card-line: rgba(15, 23, 42, 0.09);
}

.social-mock {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 46%, #ffffff 100%);
}

.social-situations,
.social-confidence,
.social-faq {
  scroll-margin-top: 96px;
}

.social-situations {
  position: relative;
  width: min(1460px, calc(100% - 96px));
  padding: clamp(54px, 6vw, 86px) 0 clamp(42px, 5vw, 70px);
}

.social-situations::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(0px, calc((100% - 1180px) / 2));
  right: max(0px, calc((100% - 1180px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 91, 255, 0.2), rgba(0, 190, 122, 0.18), transparent);
}

.social-situations .social-section-heading h2,
.social-confidence .social-section-heading h2,
.social-faq .social-section-heading h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.65rem);
  line-height: 0.98;
}

.social-situations .social-section-heading p,
.social-confidence .social-section-heading p,
.social-faq .social-section-heading p {
  max-width: 41rem;
  color: #5f6b7d;
}

.situation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 20px);
  margin-top: clamp(28px, 3.4vw, 46px);
}

.situation-card {
  --moment-accent: var(--social-blue);
  display: grid;
  grid-template-rows: auto 1fr;
  border-color: var(--social-card-line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
    #fff;
  box-shadow:
    0 24px 58px rgba(15, 23, 42, 0.075),
    0 4px 14px rgba(15, 23, 42, 0.035);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
}

.situation-card:nth-child(2) {
  --moment-accent: var(--social-green);
}

.situation-card:nth-child(3) {
  --moment-accent: var(--social-purple);
}

.situation-card:nth-child(4) {
  --moment-accent: var(--social-red);
}

.situation-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--moment-accent);
  opacity: 0.9;
}

.situation-card:hover {
  border-color: color-mix(in srgb, var(--moment-accent) 28%, var(--social-card-line));
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.11),
    0 8px 18px rgba(15, 23, 42, 0.045);
  transform: translateY(-5px);
}

.situation-card img {
  height: clamp(138px, 10vw, 186px);
  object-fit: cover;
  filter: saturate(1.02) contrast(0.985) brightness(1.01);
}

.situation-card div {
  display: grid;
  align-content: start;
  min-height: clamp(178px, 12vw, 214px);
  padding: clamp(18px, 1.6vw, 24px);
}

.situation-card span {
  width: fit-content;
  min-height: 28px;
  color: color-mix(in srgb, var(--moment-accent) 82%, #071023);
  background: color-mix(in srgb, var(--moment-accent) 10%, #ffffff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--moment-accent) 14%, transparent);
}

.situation-card h3 {
  margin-top: 16px;
  color: var(--social-ink);
  font-size: clamp(1.12rem, 1.15vw, 1.32rem);
}

.situation-card p {
  color: #5f6b7d;
}

.social-confidence {
  position: relative;
  width: min(1240px, calc(100% - 96px));
  padding: clamp(32px, 4.2vw, 58px) 0 clamp(42px, 5vw, 74px);
}

.confidence-grid {
  overflow: hidden;
  border-color: rgba(7, 16, 35, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.9), rgba(255, 255, 255, 0.98) 34%, rgba(248, 251, 255, 0.96)),
    #fff;
  box-shadow:
    0 26px 70px rgba(15, 23, 42, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.confidence-grid article {
  --confidence-color: var(--social-blue);
  position: relative;
  min-height: 184px;
  padding: clamp(24px, 2.15vw, 32px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36));
}

.confidence-grid article:nth-child(1) {
  --confidence-color: var(--social-yellow);
}

.confidence-grid article:nth-child(2) {
  --confidence-color: var(--social-blue);
}

.confidence-grid article:nth-child(3) {
  --confidence-color: var(--social-green);
}

.confidence-grid article:nth-child(4) {
  --confidence-color: var(--social-purple);
}

.confidence-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--confidence-color);
  opacity: 0.86;
}

.confidence-grid article + article {
  border-left-color: rgba(15, 23, 42, 0.075);
}

.confidence-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: var(--confidence-color);
}

.confidence-grid h3 {
  color: var(--social-ink);
}

.confidence-grid p {
  color: #5f6b7d;
}

.social-faq {
  width: min(1120px, calc(100% - 96px));
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 74px);
  padding: clamp(36px, 5vw, 70px) 0 clamp(44px, 5vw, 74px);
}

.social-faq .social-section-heading {
  width: auto;
  margin: 0;
  text-align: left;
}

.social-faq .social-section-heading p {
  margin-left: 0;
  margin-right: 0;
}

.faq-list {
  gap: 14px;
  margin-top: 0;
}

.faq-list details {
  border-color: rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.faq-list details[open] {
  border-color: rgba(18, 91, 255, 0.22);
  background: #fff;
}

.faq-list summary {
  min-height: 68px;
  padding: 20px 58px 20px 24px;
  line-height: 1.2;
}

.faq-list summary::after {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  right: 18px;
  border-radius: 999px;
  background: #eef5ff;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details p {
  padding: 0 24px 22px;
}

.mock-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 152px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0 10%, transparent 10% 18%, rgba(255, 255, 255, 0.1) 18% 24%, transparent 24%),
    linear-gradient(90deg, #075cff, #0048e7 46%, #063ec2);
}

.mock-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 45, 0.18), transparent 36%, rgba(3, 20, 45, 0.16)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.55;
}

.mock-cta h2 {
  font-size: clamp(2rem, 3.1vw, 3.15rem);
}

.mock-cta p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.mock-cta .button {
  min-height: 58px;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.mock-cta .button:hover {
  box-shadow: 0 20px 38px rgba(0, 31, 108, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .social-situations,
  .social-confidence,
  .social-faq {
    width: calc(100% - 48px);
  }

  .social-situations {
    width: calc(100% - 32px);
  }

  .social-situations {
    padding: 50px 0 44px;
  }

  .social-situations .social-section-heading h2 {
    font-size: clamp(2.35rem, 6vw, 3.3rem);
    line-height: 1.02;
  }

  .situation-grid,
  .confidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situation-grid {
    gap: 22px;
  }

  .situation-card img {
    height: clamp(190px, 22vw, 220px);
  }

  .situation-card div {
    min-height: clamp(228px, 24vw, 256px);
    padding: clamp(22px, 2.7vw, 28px);
  }

  .situation-card span {
    min-height: 40px;
    padding: 0 16px;
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  }

  .situation-card h3 {
    margin: 24px 0 12px;
    font-size: clamp(1.45rem, 2.55vw, 1.75rem);
    line-height: 1.08;
  }

  .situation-card p {
    font-size: clamp(1.08rem, 1.8vw, 1.24rem);
    line-height: 1.32;
  }

  .confidence-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.075);
  }

  .confidence-grid article:nth-child(4) {
    border-top: 1px solid rgba(15, 23, 42, 0.075);
  }

  .social-faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .social-faq .social-section-heading {
    text-align: center;
  }

  .social-faq .social-section-heading p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .social-situations,
  .social-confidence,
  .social-faq {
    width: calc(100% - 24px);
  }

  .social-situations {
    padding: 42px 0 34px;
  }

  .social-situations .social-section-heading,
  .social-confidence .social-section-heading,
  .social-faq .social-section-heading {
    width: min(100%, 420px);
  }

  .social-situations .social-section-heading h2,
  .social-confidence .social-section-heading h2,
  .social-faq .social-section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .social-situations .social-section-heading h2 {
    font-size: clamp(2rem, 8.6vw, 2.42rem);
    line-height: 1.04;
  }

  .social-situations .social-section-heading p,
  .social-confidence .social-section-heading p,
  .social-faq .social-section-heading p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .situation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .social-situations .social-section-heading p {
    max-width: 22rem;
    font-size: 0.9rem;
  }

  .situation-card {
    border-radius: 16px;
  }

  .situation-card:hover {
    transform: none;
  }

  .situation-card img {
    height: clamp(82px, 26vw, 112px);
  }

  .situation-card div {
    min-height: 142px;
    padding: 13px 12px 14px;
  }

  .situation-card span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .situation-card h3 {
    margin: 10px 0 6px;
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .situation-card p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  @media (max-width: 480px) {
    .situation-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .situation-card {
      grid-template-columns: minmax(122px, 39%) 1fr;
      grid-template-rows: 1fr;
      min-height: 146px;
    }

    .situation-card::before {
      inset: 0 auto 0 0;
      width: 4px;
      height: auto;
    }

    .situation-card img {
      width: 100%;
      height: 100%;
      min-height: 146px;
    }

    .situation-card div {
      min-height: 0;
      padding: 13px 14px;
    }

    .situation-card h3 {
      font-size: 0.98rem;
    }
  }

  .social-confidence {
    padding: 28px 0 42px;
  }

  .confidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    border-radius: 20px;
  }

  .confidence-grid article {
    min-height: 138px;
    padding: 18px 14px 16px;
  }

  .confidence-grid article:nth-child(odd) {
    border-left: 0;
  }

  .confidence-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(15, 23, 42, 0.075);
  }

  .confidence-grid article::before {
    left: 14px;
    right: 14px;
  }

  .confidence-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
  }

  .confidence-grid h3 {
    margin-bottom: 6px;
    font-size: 0.9rem;
  }

  .confidence-grid p {
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .social-faq {
    gap: 22px;
    padding: 28px 0 44px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list details {
    border-radius: 15px;
  }

  .faq-list summary {
    min-height: 56px;
    padding: 15px 50px 15px 16px;
    font-size: 0.9rem;
  }

  .faq-list summary::after {
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .faq-list details p {
    padding: 0 16px 17px;
    font-size: 0.86rem;
  }

  .mock-cta {
    min-height: 0;
    padding: 26px 18px 28px;
  }

  .cta-mini-points {
    justify-content: center;
    margin-top: 12px;
  }

  .cta-mini-points li {
    min-height: 28px;
    font-size: 0.78rem;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .social-situations {
    padding-top: 34px;
  }

  .situation-grid {
    gap: 8px;
  }

  .situation-card div {
    min-height: 132px;
    padding: 11px 10px 12px;
  }

  .situation-card h3 {
    font-size: 0.84rem;
  }

  .confidence-grid article {
    min-height: 126px;
  }

  .mock-cta {
    padding-top: 22px;
    padding-bottom: 24px;
  }
}

@media (min-width: 901px) {
  .game-carousel-window {
    min-height: clamp(376px, 27vw, 444px);
  }

  .game-template-card.is-active {
    width: clamp(560px, 46vw, 720px);
    min-height: clamp(278px, 20vw, 342px);
    grid-template-columns: minmax(210px, 0.92fr) minmax(250px, 1fr);
    grid-template-rows: 1fr;
    gap: clamp(18px, 2vw, 28px);
    padding: clamp(16px, 1.45vw, 22px);
    border-radius: 28px;
  }

  .game-template-card.is-active .game-template-art {
    min-height: 100%;
    border-radius: 22px;
  }

  .game-template-card.is-active .game-template-copy {
    align-content: center;
    gap: 12px;
    padding: clamp(8px, 1vw, 16px) clamp(8px, 1.2vw, 20px) clamp(8px, 1vw, 16px) 0;
  }

  .game-template-card.is-active .game-template-detail {
    max-width: 20rem;
  }

  .game-template-card.is-prev {
    transform: translate(calc(-50% - min(33vw, 520px)), -50%) rotate(-3deg) scale(0.86);
  }

  .game-template-card.is-next {
    transform: translate(calc(-50% + min(33vw, 520px)), -50%) rotate(3deg) scale(0.86);
  }

  .game-template-card.is-far-prev {
    transform: translate(calc(-50% - min(52vw, 820px)), -50%) rotate(-4deg) scale(0.78);
  }

  .game-template-card.is-far-next {
    transform: translate(calc(-50% + min(52vw, 820px)), -50%) rotate(4deg) scale(0.78);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .game-template-card.is-active {
    width: min(600px, 58vw);
    min-height: 300px;
    grid-template-columns: minmax(190px, 0.86fr) minmax(230px, 1fr);
  }

  .game-template-card.is-prev {
    transform: translate(calc(-50% - min(35vw, 390px)), -50%) rotate(-3deg) scale(0.82);
  }

  .game-template-card.is-next {
    transform: translate(calc(-50% + min(35vw, 390px)), -50%) rotate(3deg) scale(0.82);
  }
}

.site-footer--social {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 91, 255, 0.3), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(255, 193, 46, 0.12), transparent 15rem),
    linear-gradient(180deg, #061d43 0%, #03142d 58%, #020c1f 100%);
}

.site-footer--social::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.site-footer--social::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 28rem);
  opacity: 0.7;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 96px));
  display: grid;
  gap: clamp(24px, 3.4vw, 40px);
  margin: 0 auto;
  padding: clamp(38px, 4.5vw, 60px) 0 clamp(24px, 3vw, 36px);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(28px, 5vw, 82px);
}

.footer-brand {
  max-width: 500px;
}

.footer-logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: clamp(1.22rem, 1.55vw, 1.62rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22));
}

.footer-logo .brand-mark-shell {
  width: 42px;
  height: 42px;
}

.footer-logo .brand-mark-shell img {
  width: 42px;
  height: 42px;
}

.footer-logo .brand-wordmark {
  color: #fff;
  font-size: clamp(1.24rem, 1.5vw, 1.58rem);
}

.footer-logo .brand-wordmark-tuck {
  color: #79aaff;
}

.footer-brand p {
  max-width: 27rem;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 650;
  line-height: 1.48;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 850;
}

.footer-start-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.13), transparent 7rem),
    rgba(255, 255, 255, 0.075);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.footer-start-card h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.04rem, 1.22vw, 1.3rem);
  font-weight: 950;
  line-height: 1.08;
}

.footer-start-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 650;
  line-height: 1.36;
}

.footer-start-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: #075cff;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 21, 62, 0.22);
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms var(--ease), transform 160ms var(--ease);
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

.footer-bottom p,
.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
  font-weight: 650;
}

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .footer-inner {
    width: calc(100% - 48px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    max-width: 34rem;
  }

  .footer-start-card {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    width: calc(100% - 24px);
    gap: 20px;
    padding: 30px 0 28px;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-badges {
    gap: 7px;
    margin-top: 15px;
  }

  .footer-badges span {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .footer-start-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .footer-start-card a {
    width: 100%;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .footer-column--support {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .footer-column a {
    font-size: 0.88rem;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

/* Mobile UX audit polish: keep controls visually compact but easier to tap. */
.mock-game-rail .carousel-dot {
  position: relative;
  width: 24px;
  height: 24px;
  background: transparent;
}

.mock-game-rail .carousel-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d8dee8;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--ease), background 200ms var(--ease);
}

.mock-game-rail .carousel-dot.is-active {
  width: 34px;
  background: transparent;
}

.mock-game-rail .carousel-dot.is-active::before {
  width: 28px;
  background: var(--social-blue);
}

.carousel-dots {
  gap: 2px;
}

@media (max-width: 620px) {
  .social-page .brand,
  .social-page .nav-cta,
  .social-hero .button,
  .mock-game-rail .game-filter-pill,
  .mock-game-rail .carousel-arrow {
    min-height: 44px;
  }

  .social-page .brand {
    display: inline-flex;
    align-items: center;
  }

  .mock-game-rail .game-filter-pill {
    height: 44px;
  }

  .mock-game-rail .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .footer-column a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
}

/* FAQ simple accordion: one clear question list with soft open motion. */
.social-faq {
  display: block;
  width: min(900px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding: clamp(36px, 5vw, 66px) 0 clamp(44px, 5vw, 72px);
}

.social-faq .social-section-heading {
  width: min(100%, 680px);
  margin: 0 auto;
  text-align: center;
}

.social-faq .social-section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.social-faq .faq-list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-list--animated {
  interpolate-size: allow-keywords;
}

.faq-list--animated details {
  overflow: hidden;
  transition:
    border-color 220ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease),
    background 220ms var(--ease);
}

.faq-list--animated details[open] {
  border-color: rgba(18, 91, 255, 0.2);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.07),
    0 0 0 1px rgba(18, 91, 255, 0.04);
}

.faq-list--animated summary {
  transition: color 180ms var(--ease), padding-bottom 240ms var(--ease);
}

.faq-list--animated details[open] summary {
  color: #06142e;
}

.faq-list--animated summary::after {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(18, 91, 255, 0.08);
  line-height: 1;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.faq-list--animated details[open] summary::after {
  background: #e6f0ff;
  box-shadow:
    inset 0 0 0 1px rgba(18, 91, 255, 0.12),
    0 6px 14px rgba(18, 91, 255, 0.08);
  transform: translateY(-50%) rotate(180deg);
}

.faq-list--animated details::details-content {
  block-size: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    block-size 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    content-visibility 360ms allow-discrete;
}

.faq-list--animated details[open]::details-content {
  block-size: auto;
  opacity: 1;
  transform: translateY(0);
}

.faq-list--animated details p {
  max-width: 760px;
  padding: 0 24px 22px;
}

@supports not selector(details::details-content) {
  .faq-list--animated details[open] p {
    animation: faqAnswerFade 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes faqAnswerFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .social-faq {
    width: calc(100% - 24px);
    padding-top: 32px;
  }

  .faq-list--animated {
    gap: 10px;
  }

  .faq-list--animated summary {
    min-height: 58px;
    padding: 16px 54px 16px 18px;
  }

  .faq-list--animated details p {
    padding: 0 18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list--animated,
  .faq-list--animated *,
  .faq-list--animated details::details-content {
    transition: none !important;
    animation: none !important;
  }
}

/* Focused footer/CTA match for the latest PlayTuck reference. */
.site-footer--social {
  width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 12% 6%, rgba(18, 91, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 86% 10%, rgba(18, 91, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, #061a39 0%, #031125 100%);
  box-shadow: none;
}

.site-footer--social::before,
.site-footer--social::after {
  display: none;
}

.site-footer--social .mock-cta {
  width: 100%;
  min-height: 154px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  margin: 0;
  padding: 30px max(60px, calc((100vw - 1240px) / 2)) 28px;
  border-radius: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0 9%, transparent 9% 18%, rgba(255, 255, 255, 0.1) 18% 26%, transparent 26%),
    linear-gradient(90deg, #075cff 0%, #0551ee 45%, #043cc4 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.site-footer--social .mock-cta::before {
  background:
    linear-gradient(90deg, rgba(0, 13, 54, 0.16), transparent 36%, rgba(0, 18, 66, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.54;
}

.site-footer--social .cta-party-icon {
  width: clamp(72px, 6vw, 100px);
}

.site-footer--social .mock-cta-copy {
  min-width: 0;
}

.site-footer--social .mock-cta h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.45vw, 2.72rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.site-footer--social .mock-cta p {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 750;
  line-height: 1.35;
}

.site-footer--social .mock-cta .button {
  min-width: clamp(250px, 22vw, 310px);
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  color: #075cff;
  background: #ffffff;
  box-shadow:
    0 18px 34px rgba(0, 17, 66, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-weight: 950;
}

.site-footer--social .mock-cta .button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 42px rgba(0, 17, 66, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-footer--social .footer-inner {
  width: min(1240px, calc(100% - 120px));
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(120px, 0.55fr));
  column-gap: clamp(34px, 5vw, 92px);
  row-gap: 28px;
  align-items: start;
  margin: 0 auto;
  padding: clamp(34px, 3.7vw, 48px) 0 28px;
}

.site-footer--social .footer-brand {
  max-width: 330px;
}

.site-footer--social .footer-logo {
  gap: 10px;
  font-size: 1.24rem;
}

.site-footer--social .footer-logo .brand-mark-shell {
  width: 38px;
  height: 38px;
}

.site-footer--social .footer-logo .brand-mark-shell img {
  width: 38px;
  height: 38px;
}

.site-footer--social .footer-logo .brand-wordmark {
  color: #ffffff;
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  font-weight: 950;
}

.site-footer--social .footer-logo .brand-wordmark-tuck {
  color: #8ab2ff;
}

.site-footer--social .footer-brand p {
  max-width: 16rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-links a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #061a39;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  font-size: 0.78rem;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
}

.footer-social-links a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.site-footer--social .footer-column {
  gap: 12px;
}

.site-footer--social .footer-column h2 {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer--social .footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-footer--social .footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 440px);
  gap: 28px;
  align-items: end;
  padding-top: 4px;
}

.site-footer--social .footer-bottom p,
.site-footer--social .footer-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-footer--social .footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .site-footer--social .mock-cta {
    grid-template-columns: auto minmax(0, 1fr);
    padding-inline: 32px;
  }

  .site-footer--social .mock-cta .button {
    grid-column: 2;
    justify-self: start;
    min-width: 240px;
  }

  .site-footer--social .footer-inner {
    width: calc(100% - 64px);
    grid-template-columns: 1.2fr repeat(3, minmax(110px, 0.55fr));
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .site-footer--social .mock-cta {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 26px 26px 28px;
    text-align: center;
  }

  .site-footer--social .cta-party-icon {
    display: none;
  }

  .site-footer--social .mock-cta h2 {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
  }

  .site-footer--social .mock-cta p {
    max-width: 24rem;
    font-size: 0.92rem;
  }

  .site-footer--social .mock-cta .button {
    grid-column: auto;
    width: min(100%, 340px);
    min-width: 0;
    min-height: 56px;
  }

  .site-footer--social .footer-inner {
    width: calc(100% - 48px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 22px;
    padding: 30px 0 24px;
  }

  .site-footer--social .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
  }

  .site-footer--social .footer-brand p {
    max-width: 22rem;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer--social .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer--social .footer-social-links {
    justify-content: center;
  }

  .site-footer--social .footer-column {
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .site-footer--social .footer-column--support {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .site-footer--social .footer-column a {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .site-footer--social .footer-bottom {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
    text-align: center;
  }

  .site-footer--social .footer-bottom p:last-child {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .site-footer--social .footer-inner {
    width: calc(100% - 36px);
    gap: 22px 16px;
  }
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 91, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.legal-main {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 82px) 0 clamp(56px, 8vw, 96px);
}

.legal-hero {
  max-width: 780px;
  margin: 0 auto clamp(24px, 4vw, 36px);
  text-align: center;
}

.legal-hero h1 {
  margin: 12px 0 14px;
  color: #071122;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  max-width: 48rem;
  margin: 0 auto;
  color: #5e687d;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 700;
  line-height: 1.55;
}

.legal-shell {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.legal-content {
  padding: clamp(24px, 5vw, 54px);
  color: #1a2233;
}

.legal-content h2 {
  margin: clamp(30px, 4vw, 46px) 0 12px;
  color: #071122;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: #0d1730;
  font-size: 1.05rem;
  font-weight: 920;
  line-height: 1.22;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #4d586d;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  font-style: normal;
  font-weight: 620;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 18px;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--social-blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--social-blue);
  box-shadow: 0 12px 26px rgba(18, 91, 255, 0.2);
  text-decoration: none !important;
}

.legal-footer .footer-inner {
  padding-top: clamp(30px, 4vw, 42px);
}

.legal-footer .footer-brand {
  max-width: 360px;
}

@media (max-width: 760px) {
  .legal-page .site-nav {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 16px 0 12px;
  }

  .legal-page .brand--playtuck {
    justify-self: center;
  }

  .legal-page .site-nav nav {
    grid-column: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .legal-page .nav-cta {
    display: none;
  }

  .legal-main {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding-top: 34px;
  }

  .legal-hero {
    margin-bottom: 22px;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .legal-shell {
    border-radius: 16px;
  }

  .legal-content {
    padding: 22px 18px;
  }

  .legal-content p,
  .legal-content li,
  .legal-content address,
  .legal-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .legal-footer .footer-inner {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }
}

/* PlayTuck nav + hero reference polish. */
.social-page .site-nav {
  width: 100%;
  max-width: none;
  min-height: 78px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin: 0;
  padding: 18px clamp(36px, 6vw, 88px);
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.035);
  backdrop-filter: blur(12px);
}

.social-page .site-nav .brand--playtuck {
  gap: 10px;
}

.social-page .site-nav .brand-mark-shell {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
}

.social-page .site-nav .brand-mark-shell img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 7px 12px rgba(7, 23, 45, 0.14));
}

.social-page .site-nav .brand-wordmark {
  font-size: clamp(1.72rem, 2.2vw, 2.16rem);
  line-height: 0.95;
}

.social-page .site-nav nav {
  justify-self: center;
  gap: clamp(34px, 4vw, 64px);
  color: #070c18;
  font-size: 0.98rem;
  font-weight: 900;
}

.social-page .site-nav nav a {
  opacity: 1;
}

.social-page .site-nav .nav-cta {
  min-width: 132px;
  min-height: 48px;
  justify-self: end;
  padding: 0 24px;
  box-shadow: 0 12px 26px rgba(18, 91, 255, 0.18);
  font-size: 1rem;
}

.social-page .site-nav .nav-cta:hover {
  box-shadow: 0 16px 32px rgba(18, 91, 255, 0.24);
}

.social-hero {
  width: min(1440px, calc(100% - 96px));
  min-height: auto;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
  padding: clamp(50px, 5.5vw, 76px) 0 clamp(50px, 5vw, 72px);
  text-align: left;
  overflow: visible;
}

.social-hero .hero-copy {
  width: min(560px, 100%);
  justify-self: start;
}

.social-hero .hero-copy .hero-lede,
.social-hero .hero-copy .hero-note {
  margin-left: 0;
  margin-right: 0;
}

.social-hero .eyebrow {
  margin: 0;
  color: var(--social-blue);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.14em;
}

.social-hero .hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(5.2rem, 7.5vw, 7.25rem);
  font-weight: 950;
  line-height: 0.94;
}

.social-hero .hero-lede {
  max-width: 100%;
  color: #070c18;
  font-size: clamp(1.68rem, 2.3vw, 2.25rem);
  font-weight: 950;
  line-height: 1.05;
}

.social-hero .hero-note {
  max-width: 520px;
  margin-top: 18px;
  color: #647084;
  font-size: clamp(1.22rem, 1.55vw, 1.58rem);
  font-weight: 560;
  line-height: 1.44;
}

.social-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.social-hero .button--social {
  min-width: 224px;
  min-height: 64px;
  padding: 0 30px;
  box-shadow: 0 16px 34px rgba(18, 91, 255, 0.22);
  font-size: 1.18rem;
}

.social-hero .button--social::after {
  content: "\f061";
  margin-left: 16px;
  font-family: "Font Awesome 6 Free";
  font-size: 0.96em;
  font-weight: 900;
}

.hero-support {
  margin: 16px 0 0;
  color: #667085;
  font-size: 1.02rem;
  font-weight: 720;
}

.hero-proof-row {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.hero-proof-card {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.hero-proof-card:first-child {
  border-radius: 18px 0 0 18px;
}

.hero-proof-card:last-child {
  border-radius: 0 18px 18px 0;
}

.hero-proof-card + .hero-proof-card {
  margin-left: -1px;
}

.hero-proof-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--social-blue);
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(18, 91, 255, 0.12);
}

.hero-proof-card p {
  margin: 0;
  color: #111827;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.12;
}

.social-stage {
  width: min(760px, 100%);
  min-height: clamp(430px, 39vw, 570px);
  justify-self: end;
  margin-top: 0;
  perspective: 1400px;
}

.phone--social {
  left: 50%;
  top: 50%;
  bottom: auto;
  width: clamp(260px, 18.4vw, 318px);
  overflow: hidden;
  border-width: 5px;
  border-color: #070b14;
  border-radius: 38px;
  background: #070b14;
  box-shadow:
    0 34px 76px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%);
}

.social-stage .phone-top,
.social-stage .side-phone-top {
  display: none;
}

.phone--social .phone-screen {
  min-height: clamp(374px, 30.5vw, 482px);
  border-radius: 31px;
}

.side-phone {
  top: 52%;
  bottom: auto;
  width: clamp(210px, 15.8vw, 266px);
  overflow: hidden;
  border-width: 5px;
  border-color: #070b14;
  border-radius: 34px;
  background: #070b14;
  box-shadow:
    0 26px 58px rgba(15, 23, 42, 0.17),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

.side-phone-screen {
  min-height: clamp(320px, 26.4vw, 414px);
  border-radius: 28px;
}

.side-phone--left {
  left: clamp(0px, 3vw, 54px);
  transform: translateY(-50%) rotate(-7deg);
}

.side-phone--right {
  left: auto;
  right: clamp(0px, 2vw, 34px);
  transform: translateY(-50%) rotate(7deg);
}

@media (max-width: 1100px) {
  .social-hero {
    width: min(100% - 56px, 1180px);
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 34px;
  }

  .social-hero .hero-copy h1 {
    font-size: clamp(4.5rem, 8.2vw, 6.15rem);
  }

  .social-stage {
    min-height: 470px;
  }

  .phone--social {
    width: clamp(238px, 22.5vw, 288px);
  }

  .side-phone {
    width: clamp(196px, 19.5vw, 238px);
  }
}

@media (max-width: 900px) {
  .social-page .site-nav {
    grid-template-columns: 1fr auto;
    padding: 16px 28px;
  }

  .social-page .site-nav nav {
    display: none;
  }

  .social-hero {
    width: min(100% - 40px, 720px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    padding: 44px 0 46px;
    text-align: center;
  }

  .social-hero .hero-copy {
    justify-self: center;
  }

  .social-hero .hero-copy .hero-lede,
  .social-hero .hero-copy .hero-note {
    margin-left: auto;
    margin-right: auto;
  }

  .social-hero .hero-actions,
  .hero-proof-row {
    justify-content: center;
  }

  .social-stage {
    width: min(620px, 100%);
    min-height: 390px;
    justify-self: center;
  }

  .phone--social {
    width: min(244px, 40vw);
  }

  .phone--social .phone-screen {
    min-height: 356px;
  }

  .side-phone {
    width: min(194px, 32vw);
  }

  .side-phone-screen {
    min-height: 298px;
  }

  .side-phone--left {
    left: clamp(0px, 7vw, 70px);
  }

  .side-phone--right {
    right: clamp(0px, 7vw, 70px);
  }
}

@media (max-width: 620px) {
  .social-page .site-nav {
    min-height: 64px;
    padding: 12px 18px;
  }

  .social-page .site-nav .brand-wordmark {
    font-size: 1.46rem;
  }

  .social-page .site-nav .brand-mark-shell,
  .social-page .site-nav .brand-mark-shell img {
    width: 32px;
    height: 32px;
  }

  .social-page .site-nav .nav-cta {
    min-width: 106px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .social-hero {
    width: min(100% - 24px, 460px);
    gap: 24px;
    padding: 30px 0 38px;
  }

  .social-hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .social-hero .hero-copy h1 {
    margin: 12px 0 12px;
    font-size: clamp(3.15rem, 16vw, 4.2rem);
    line-height: 0.96;
  }

  .social-hero .hero-lede {
    font-size: clamp(1.32rem, 6vw, 1.72rem);
  }

  .social-hero .hero-note {
    max-width: 21rem;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .social-hero .button--social {
    min-width: 190px;
    min-height: 52px;
    padding: 0 24px;
    font-size: 1rem;
  }

  .hero-support {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .hero-proof-row {
    width: 100%;
    max-width: 352px;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 24px auto 0;
  }

  .hero-proof-card,
  .hero-proof-card:first-child,
  .hero-proof-card:last-child {
    width: 100%;
    min-height: 58px;
    grid-template-columns: 38px minmax(0, 1fr);
    border-radius: 14px;
    text-align: left;
  }

  .hero-proof-card + .hero-proof-card {
    margin-left: 0;
  }

  .hero-proof-card span {
    width: 38px;
    height: 38px;
  }

  .social-stage {
    width: 100%;
    min-height: 305px;
  }

  .phone--social {
    width: min(182px, 44vw);
    border-width: 4px;
    border-radius: 28px;
  }

  .phone--social .phone-screen {
    min-height: 266px;
    border-radius: 24px;
  }

  .side-phone {
    width: min(144px, 35vw);
    border-width: 4px;
    border-radius: 26px;
  }

  .side-phone-screen {
    min-height: 218px;
    border-radius: 22px;
  }

  .side-phone--left {
    left: 2px;
    transform: translateY(-50%) rotate(-6deg);
  }

  .side-phone--right {
    right: 2px;
    transform: translateY(-50%) rotate(6deg);
  }
}

/* Reference-style hero game phones. */
.social-stage .phone-top,
.social-stage .side-phone-top {
  z-index: 20;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.social-stage .phone-island {
  width: 74px;
  height: 24px;
  border-radius: 999px;
  background: #050713;
  box-shadow: inset 10px 0 18px rgba(255, 255, 255, 0.04);
}

.social-stage .side-phone .phone-island {
  width: 58px;
  height: 19px;
}

.phone--social {
  z-index: 9;
  width: clamp(300px, 21vw, 356px);
  border-width: 7px;
  border-radius: 44px;
  background: #050713;
  box-shadow:
    0 34px 72px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.32);
}

.side-phone {
  z-index: 6;
  width: clamp(230px, 16.5vw, 282px);
  border-width: 7px;
  border-radius: 42px;
  background: #050713;
  box-shadow:
    0 26px 58px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.24);
}

.side-phone--left {
  left: clamp(8px, 2.8vw, 50px);
  top: 53%;
  transform: translateY(-50%) rotate(-8deg);
}

.side-phone--right {
  right: clamp(0px, 1vw, 18px);
  top: 53%;
  transform: translateY(-50%) rotate(8deg);
}

.social-stage .hero-game-screen {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  box-sizing: border-box;
  text-align: left;
}

.phone--social .hero-game-screen {
  min-height: clamp(440px, 34vw, 552px);
  padding: 46px 20px 20px;
  border-radius: 36px;
}

.side-phone .hero-game-screen {
  min-height: clamp(350px, 27vw, 450px);
  padding: 42px 17px 16px;
  border-radius: 34px;
}

.hero-screen-status {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-game-screen h3,
.hero-game-screen p,
.hero-game-screen small,
.hero-game-screen strong,
.hero-game-screen b {
  position: relative;
  z-index: 1;
}

.hero-game-screen h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.hero-game-screen p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.hero-game-screen--fake {
  background:
    radial-gradient(circle at 72% 4%, rgba(255, 255, 255, 0.22), transparent 8rem),
    linear-gradient(165deg, #7b25d4 0%, #3c176d 48%, #11152d 100%);
}

.hero-game-screen--fake::after,
.hero-game-screen--room::before,
.hero-game-screen--tac::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-game-screen--fake::after {
  background:
    radial-gradient(circle at 14% 24%, #ff8b3d 0 4px, transparent 5px),
    radial-gradient(circle at 82% 18%, #44d17e 0 4px, transparent 5px),
    radial-gradient(circle at 88% 74%, #ff4e7a 0 3px, transparent 4px);
  opacity: 0.75;
}

.fake-question {
  position: relative;
  z-index: 1;
  margin: clamp(18px, 2vw, 26px) auto clamp(14px, 1.4vw, 18px);
  padding: clamp(16px, 1.8vw, 26px) 12px;
  border-radius: 18px;
  color: #fff;
  background: rgba(4, 9, 26, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: clamp(0.92rem, 1.05vw, 1.16rem);
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.fake-votes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.fake-votes div,
.room-player-list div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 12px;
  align-items: center;
  gap: 8px;
}

.fake-votes div {
  min-height: 32px;
  padding: 5px 9px;
  border-radius: 11px;
  background: rgba(3, 8, 22, 0.42);
}

.fake-votes span,
.room-player-list span,
.hero-game-screen--tac small span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #44210a;
  background: linear-gradient(135deg, #ffd774, #ff9f32);
  font-size: 0.7rem;
  font-weight: 950;
}

.fake-votes strong,
.room-player-list b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 900;
}

.fake-votes i,
.room-player-list i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #32d477;
  box-shadow: 0 0 0 3px rgba(50, 212, 119, 0.12);
}

.fake-votes div:nth-child(2) i {
  background: #ff733d;
  box-shadow: 0 0 0 3px rgba(255, 115, 61, 0.13);
}

.hero-game-screen--fake small {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.26);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-game-screen--room {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 184, 52, 0.8), transparent 0.55rem),
    radial-gradient(circle at 82% 24%, rgba(255, 93, 67, 0.85), transparent 0.45rem),
    linear-gradient(180deg, #0975ff 0%, #1165ff 45%, #075cff 100%);
  color: #fff;
}

.hero-game-screen--room::before {
  background:
    radial-gradient(circle at 20% 32%, #ffca45 0 5px, transparent 6px),
    radial-gradient(circle at 82% 34%, #ff8b36 0 4px, transparent 5px),
    linear-gradient(140deg, transparent 12%, rgba(255, 255, 255, 0.1) 12% 14%, transparent 14% 86%, rgba(255, 255, 255, 0.12) 86% 88%, transparent 88%);
  opacity: 0.9;
}

.room-label {
  margin-top: 0 !important;
  color: #dbeaff !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.01em;
}

.room-code {
  align-self: center;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 30px;
  border-radius: 14px;
  color: #071023;
  background: #fff;
  box-shadow: 0 12px 24px rgba(7, 23, 45, 0.16);
  font-size: clamp(2rem, 2.65vw, 2.75rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.room-mascot {
  position: relative;
  z-index: 1;
  margin: 8px auto -20px;
  font-size: clamp(3.35rem, 4.2vw, 4.6rem);
  line-height: 1;
  filter: drop-shadow(0 10px 10px rgba(7, 23, 45, 0.22));
}

.room-player-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding: 16px 15px 14px;
  border-radius: 20px;
  color: #132033;
  background: #fff;
  box-shadow: 0 18px 32px rgba(7, 23, 45, 0.2);
}

.room-player-head,
.hero-game-screen--tac small {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-player-head span,
.room-player-head strong {
  color: #1d2a3f;
  font-size: 0.82rem;
  font-weight: 950;
}

.room-player-list {
  display: grid;
  gap: 5px;
}

.room-player-list div {
  min-height: 24px;
}

.room-player-list b {
  color: #1f2937;
}

.hero-game-screen--room button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: #1265ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 20px rgba(0, 45, 168, 0.25);
  font-size: 1rem;
  font-weight: 950;
}

.hero-game-screen--tac {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 216, 79, 0.22), transparent 5rem),
    linear-gradient(160deg, #28a95d 0%, #0b6b3e 100%);
}

.hero-game-screen--tac::before {
  background:
    radial-gradient(circle at 18% 72%, #ff9f32 0 5px, transparent 6px),
    radial-gradient(circle at 84% 70%, #42b7ff 0 4px, transparent 5px),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.18), transparent 4rem);
}

.tac-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  aspect-ratio: 1;
  margin: clamp(22px, 2.3vw, 34px) auto 16px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 26px rgba(5, 50, 30, 0.25);
}

.tac-board span {
  display: grid;
  place-items: center;
  min-width: 0;
  border-right: 3px solid #1c4f7f;
  border-bottom: 3px solid #1c4f7f;
  font-size: clamp(1.5rem, 2.35vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
}

.tac-board span:nth-child(3n) {
  border-right: 0;
}

.tac-board span:nth-child(n + 7) {
  border-bottom: 0;
}

.tac-board .is-x {
  color: #ff8239;
}

.tac-board .is-o {
  color: #166dff;
}

.hero-game-screen--tac small {
  gap: 8px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-game-screen--tac small span {
  width: 24px;
  height: 24px;
  margin-left: 5px;
  color: #fff;
  background: #ff8f3d;
}

@media (max-width: 1100px) {
  .phone--social {
    width: clamp(270px, 24vw, 316px);
  }

  .side-phone {
    width: clamp(205px, 19vw, 246px);
  }
}

@media (max-width: 900px) {
  .phone--social {
    width: min(246px, 40vw);
  }

  .phone--social .hero-game-screen {
    min-height: 358px;
  }

  .side-phone {
    width: min(194px, 32vw);
  }

  .side-phone .hero-game-screen {
    min-height: 298px;
  }
}

@media (max-width: 620px) {
  .phone--social {
    width: min(188px, 45vw);
    border-width: 5px;
    border-radius: 30px;
  }

  .side-phone {
    width: min(145px, 35vw);
    border-width: 5px;
    border-radius: 28px;
  }

  .phone--social .hero-game-screen {
    min-height: 276px;
    padding: 34px 11px 11px;
    border-radius: 24px;
  }

  .side-phone .hero-game-screen {
    min-height: 220px;
    padding: 30px 9px 10px;
    border-radius: 22px;
  }

  .social-stage .phone-island {
    width: 50px;
    height: 16px;
  }

  .social-stage .side-phone .phone-island {
    width: 38px;
    height: 13px;
  }

  .hero-screen-status {
    top: 7px;
    left: 11px;
    right: 11px;
    font-size: 0.48rem;
  }

  .hero-game-screen h3 {
    font-size: 0.78rem;
  }

  .hero-game-screen p,
  .room-label {
    font-size: 0.54rem !important;
  }

  .fake-question {
    margin: 12px auto 10px;
    padding: 12px 8px;
    border-radius: 12px;
    font-size: 0.64rem;
  }

  .fake-votes {
    gap: 5px;
  }

  .fake-votes div {
    min-height: 23px;
    padding: 3px 6px;
    grid-template-columns: 20px minmax(0, 1fr) 8px;
    gap: 5px;
  }

  .fake-votes span,
  .room-player-list span,
  .hero-game-screen--tac small span {
    width: 20px;
    height: 20px;
    font-size: 0.54rem;
  }

  .fake-votes strong,
  .room-player-list b {
    font-size: 0.56rem;
  }

  .fake-votes i,
  .room-player-list i {
    width: 8px;
    height: 8px;
  }

  .hero-game-screen--fake small {
    right: 12px;
    bottom: 10px;
    min-height: 18px;
    font-size: 0.48rem;
  }

  .room-code {
    min-height: 38px;
    margin-top: 5px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 1.52rem;
  }

  .room-mascot {
    margin: 5px auto -12px;
    font-size: 2.35rem;
  }

  .room-player-card {
    gap: 4px;
    padding: 10px 9px 8px;
    border-radius: 13px;
  }

  .room-player-head span,
  .room-player-head strong {
    font-size: 0.54rem;
  }

  .room-player-list {
    gap: 3px;
  }

  .room-player-list div {
    min-height: 18px;
    grid-template-columns: 20px minmax(0, 1fr) 8px;
    gap: 5px;
  }

  .hero-game-screen--room button {
    min-height: 34px;
    margin-top: 8px;
    border-radius: 11px;
    font-size: 0.66rem;
  }

  .tac-board {
    margin: 15px auto 10px;
    padding: 9px;
    border-radius: 11px;
  }

  .tac-board span {
    border-width: 2px;
    font-size: 1.18rem;
  }

  .hero-game-screen--tac small {
    font-size: 0.52rem;
  }
}

/* Mock-style moment cards using the existing moment images. */
.social-situations {
  width: min(1380px, calc(100% - 96px));
  padding-top: clamp(46px, 5vw, 70px);
  padding-bottom: clamp(38px, 4.8vw, 64px);
}

.social-situations::before {
  display: none;
}

.social-situations .social-section-heading p {
  display: none;
}

.situation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 26px);
  margin-top: clamp(24px, 3vw, 38px);
}

.situation-card {
  position: relative;
  min-height: clamp(250px, 18vw, 320px);
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #071023;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
  isolation: isolate;
}

.situation-card::before {
  display: none;
}

.situation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0) 28%, rgba(5, 9, 18, 0.42) 58%, rgba(5, 9, 18, 0.94) 100%);
  pointer-events: none;
}

.situation-card:hover {
  border-color: transparent;
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.18);
  transform: translateY(-4px);
}

.situation-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02) brightness(0.88);
  transform: scale(1.01);
}

.situation-card div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  min-height: auto;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: clamp(18px, 1.8vw, 24px);
  color: #fff;
}

.situation-card .situation-icon {
  width: 44px;
  height: 44px;
  min-height: 0;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--social-blue);
  box-shadow:
    0 12px 24px rgba(18, 91, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  font-size: 1rem;
}

.situation-card h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(1.28rem, 1.45vw, 1.6rem);
  font-weight: 950;
  line-height: 1.02;
}

.situation-card p {
  max-width: 12.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-weight: 820;
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .social-situations {
    width: calc(100% - 40px);
  }

  .situation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situation-card {
    min-height: clamp(250px, 32vw, 340px);
  }
}

@media (max-width: 620px) {
  .social-situations {
    width: calc(100% - 24px);
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .social-situations .social-section-heading h2 {
    font-size: clamp(2rem, 8.8vw, 2.55rem);
  }

  .situation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .situation-card {
    min-height: clamp(188px, 49vw, 236px);
    border-radius: 12px;
  }

  .situation-card div {
    padding: 12px;
  }

  .situation-card .situation-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    font-size: 0.78rem;
  }

  .situation-card h3 {
    margin-bottom: 4px;
    font-size: clamp(1rem, 4.8vw, 1.18rem);
  }

  .situation-card p {
    max-width: 9rem;
    font-size: clamp(0.72rem, 3.35vw, 0.84rem);
    line-height: 1.16;
  }
}

@media (max-width: 390px) {
  .situation-grid {
    grid-template-columns: 1fr;
  }

  .situation-card {
    min-height: 220px;
  }
}

/* Interactive moment details. */
.situation-card {
  width: 100%;
  padding: 0;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms var(--ease);
}

.situation-card:focus-visible {
  outline: 3px solid rgba(18, 91, 255, 0.42);
  outline-offset: 4px;
}

.situation-card::after {
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.04) 18%, rgba(5, 9, 18, 0.38) 50%, rgba(5, 9, 18, 0.95) 100%);
  transition: background 180ms var(--ease);
}

.situation-card:hover::after,
.situation-card:focus-visible::after,
.situation-card[aria-expanded="true"]::after {
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.16) 0%, rgba(5, 9, 18, 0.54) 42%, rgba(5, 9, 18, 0.98) 100%);
}

.situation-card:hover img,
.situation-card:focus-visible img,
.situation-card[aria-expanded="true"] img {
  filter: saturate(1.08) contrast(1.04) brightness(0.78);
  transform: scale(1.045);
}

.situation-card .situation-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(18px, 1.8vw, 24px);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.situation-card .situation-cue {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px 0 12px;
  border-radius: 999px;
  color: #071023;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.14),
    inset 0 0 0 1px rgba(18, 91, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.situation-card .situation-cue__tap,
.situation-card .situation-cue__hover {
  width: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font: inherit;
}

.situation-card .situation-cue__hover {
  display: none;
}

.situation-card .situation-cue i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--social-blue);
  font-size: 0.58rem;
  transition: transform 180ms var(--ease);
}

.situation-card:hover .situation-cue,
.situation-card:focus-visible .situation-cue,
.situation-card[aria-expanded="true"] .situation-cue {
  color: #fff;
  background: var(--social-blue);
}

.situation-card:hover .situation-cue i,
.situation-card:focus-visible .situation-cue i,
.situation-card[aria-expanded="true"] .situation-cue i {
  color: var(--social-blue);
  background: #fff;
  transform: rotate(45deg);
}

.situation-card .situation-title {
  display: block;
  width: auto;
  min-height: 0;
  margin: 0 0 5px;
  padding: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.28rem, 1.45vw, 1.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

.situation-card .situation-summary,
.situation-card .situation-detail {
  display: block;
  width: auto;
  min-height: 0;
  max-width: 13.2rem;
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  box-shadow: none;
  font-weight: 820;
  line-height: 1.18;
}

.situation-card .situation-summary {
  font-size: clamp(0.86rem, 0.95vw, 1rem);
}

.situation-card .situation-detail {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 760;
  line-height: 1.22;
  transition:
    max-height 220ms var(--ease),
    margin-top 220ms var(--ease),
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
}

.situation-card:hover .situation-detail,
.situation-card:focus-visible .situation-detail,
.situation-card[aria-expanded="true"] .situation-detail {
  max-height: 7rem;
  margin-top: 9px;
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .situation-card .situation-cue__tap {
    display: none;
  }

  .situation-card .situation-cue__hover {
    display: inline;
  }
}

@media (max-width: 620px) {
  .situation-card .situation-content {
    padding: 12px;
  }

  .situation-card .situation-cue {
    top: 9px;
    right: 9px;
    min-height: 27px;
    gap: 5px;
    padding: 0 8px 0 9px;
    font-size: 0.62rem;
  }

  .situation-card .situation-cue i {
    width: 14px;
    height: 14px;
    font-size: 0.5rem;
  }

  .situation-card .situation-title {
    margin-bottom: 4px;
    font-size: clamp(1rem, 4.8vw, 1.18rem);
  }

  .situation-card .situation-summary {
    max-width: 9rem;
    font-size: clamp(0.72rem, 3.35vw, 0.84rem);
    line-height: 1.16;
  }

  .situation-card .situation-detail {
    max-width: 9.4rem;
    font-size: clamp(0.65rem, 3vw, 0.76rem);
    line-height: 1.16;
  }

  .situation-card[aria-expanded="true"] .situation-detail {
    max-height: 6rem;
    margin-top: 7px;
  }
}

/* Reference-style How it works row. */
.mock-flow {
  width: min(1380px, calc(100% - 96px));
  padding: clamp(42px, 4.8vw, 66px) 0 clamp(46px, 4.6vw, 66px);
  text-align: center;
}

.mock-flow h2 {
  margin: 0;
  color: var(--social-blue);
  font-size: clamp(0.74rem, 0.85vw, 0.92rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.mock-flow .mock-section-note {
  display: none;
}

.mock-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 3vw, 38px);
}

.mock-steps::before {
  display: none;
}

.mock-steps article.flow-card {
  position: relative;
  min-height: clamp(235px, 18vw, 292px);
  display: grid;
  grid-template-rows: auto auto minmax(118px, 1fr);
  align-content: start;
  justify-items: stretch;
  gap: 0;
  padding: 0 clamp(22px, 3.15vw, 58px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.mock-steps article.flow-card:not(:last-child) {
  border-right: 1px solid rgba(148, 163, 184, 0.32);
}

.mock-steps article.flow-card::after,
.mock-steps article.flow-card:not(:last-child)::after {
  display: none;
}

.flow-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
}

.flow-card .step-number {
  position: static;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--social-blue);
  box-shadow: 0 8px 18px rgba(18, 91, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  transform: none;
}

.flow-card h3 {
  margin: 0;
  color: #080f1f;
  font-size: clamp(1.42rem, 1.5vw, 1.72rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.flow-card p {
  max-width: 11.8rem;
  margin: 9px 0 0 44px;
  color: #2f3b4f;
  font-size: clamp(0.84rem, 0.92vw, 0.98rem);
  font-weight: 720;
  line-height: 1.32;
  text-align: left;
}

.flow-visual {
  position: relative;
  width: 100%;
  min-height: clamp(132px, 10.5vw, 166px);
  display: grid;
  place-items: center;
  margin-top: clamp(26px, 2.7vw, 38px);
  overflow: visible;
}

.flow-visual--image .flow-icon {
  width: clamp(148px, 11.2vw, 202px);
  height: clamp(148px, 11.2vw, 202px);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.flow-visual--image .flow-icon::before {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 16px rgba(15, 23, 42, 0.15));
}

.flow-visual--image .flow-icon::after {
  display: none;
}

.flow-code-phone,
.flow-mini-phone {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 4px solid #071023;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow:
    0 14px 22px rgba(15, 23, 42, 0.1),
    inset 0 0 0 1px rgba(18, 91, 255, 0.06);
  font-family: inherit;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.flow-code-phone::before,
.flow-mini-phone::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  height: 13px;
  border-radius: 0 0 10px 10px;
  background: #071023;
  transform: translateX(-50%);
}

.flow-code-phone span,
.flow-mini-phone span {
  width: 100%;
  color: #7d91ad;
  font-weight: 950;
  letter-spacing: 0.005em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.flow-code-phone strong,
.flow-mini-phone strong {
  color: #071023;
  font-weight: 950;
  letter-spacing: 0.015em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.flow-code-phone {
  width: clamp(88px, 6.1vw, 108px);
  height: clamp(128px, 8.8vw, 158px);
  border-bottom-width: 0;
  border-radius: 26px 26px 0 0;
}

.flow-code-phone::before {
  width: 42px;
}

.flow-code-phone span {
  margin-top: 10px;
  color: #71839e;
  font-size: clamp(0.58rem, 0.56vw, 0.7rem);
}

.flow-code-phone strong {
  margin-top: 8px;
  font-size: clamp(1.18rem, 1.24vw, 1.48rem);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.flow-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.flow-spark--one {
  left: 20%;
  top: 35%;
  background: #8b5cf6;
  transform: rotate(35deg);
}

.flow-spark--two {
  left: 28%;
  top: 64%;
  background: #ffd13d;
  transform: rotate(-25deg);
}

.flow-spark--three {
  right: 23%;
  top: 38%;
  background: #62d6ea;
  transform: rotate(-18deg);
}

.flow-spark--four {
  right: 19%;
  top: 63%;
  background: #ff4f87;
  transform: rotate(35deg);
}

.flow-visual--join {
  grid-template-columns: repeat(3, auto);
  align-items: end;
  justify-content: center;
  gap: clamp(7px, 0.8vw, 12px);
}

.flow-mini-phone {
  width: clamp(64px, 4.6vw, 84px);
  height: clamp(112px, 7.2vw, 138px);
  border-bottom-width: 0;
  border-radius: 21px 21px 0 0;
}

.flow-mini-phone::before {
  width: 30px;
  height: 10px;
}

.flow-mini-phone span {
  margin-top: 12px;
  color: #6c95e7;
  font-size: clamp(0.42rem, 0.44vw, 0.54rem);
}

.flow-mini-phone strong {
  margin-top: 6px;
  font-size: clamp(0.84rem, 0.82vw, 1.04rem);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.flow-mini-phone--one {
  transform: rotate(-8deg) translateY(7px);
}

.flow-mini-phone--two {
  transform: translateY(1px);
}

.flow-mini-phone--three {
  transform: rotate(8deg) translateY(8px);
}

@media (max-width: 1100px) {
  .mock-flow {
    width: calc(100% - 48px);
    padding-top: 48px;
  }

  .mock-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .mock-steps article.flow-card {
    min-height: 260px;
    padding: 0 clamp(20px, 4vw, 44px) 30px;
  }

  .mock-steps article.flow-card:not(:last-child) {
    border-right: 0;
  }

  .mock-steps article.flow-card:nth-child(odd) {
    border-right: 1px solid rgba(148, 163, 184, 0.32);
  }

  .mock-steps article.flow-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  }
}

@media (max-width: 620px) {
  .mock-flow {
    width: calc(100% - 24px);
    padding: 38px 0 42px;
  }

  .mock-steps {
    margin-top: 26px;
    row-gap: 24px;
  }

  .mock-steps article.flow-card {
    min-height: 218px;
    grid-template-rows: auto auto minmax(92px, 1fr);
    padding: 0 12px 22px;
  }

  .flow-step-heading {
    gap: 8px;
    min-height: 30px;
  }

  .flow-card .step-number {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }

  .flow-card h3 {
    font-size: clamp(1.04rem, 5vw, 1.28rem);
  }

  .flow-card p {
    max-width: 8.2rem;
    margin: 7px 0 0 34px;
    font-size: clamp(0.68rem, 3.15vw, 0.78rem);
    line-height: 1.28;
  }

  .flow-visual {
    min-height: 98px;
    margin-top: 18px;
  }

  .flow-visual--image .flow-icon {
    width: clamp(96px, 31vw, 128px);
    height: clamp(96px, 31vw, 128px);
  }

  .flow-code-phone {
    width: 62px;
    height: 96px;
    border-width: 3px;
    border-bottom-width: 0;
    border-radius: 19px 19px 0 0;
  }

  .flow-code-phone::before {
    top: -3px;
    width: 30px;
    height: 10px;
  }

  .flow-code-phone span {
    font-size: 0.48rem;
  }

  .flow-code-phone strong {
    font-size: 1rem;
  }

  .flow-spark {
    width: 6px;
    height: 6px;
  }

  .flow-spark--one {
    left: 15%;
  }

  .flow-spark--two {
    left: 22%;
  }

  .flow-spark--three {
    right: 17%;
  }

  .flow-spark--four {
    right: 12%;
  }

  .flow-visual--join {
    gap: 4px;
  }

  .flow-mini-phone {
    width: 47px;
    height: 86px;
    border-width: 3px;
    border-bottom-width: 0;
    border-radius: 16px 16px 0 0;
  }

  .flow-mini-phone::before {
    top: -3px;
    width: 22px;
    height: 8px;
  }

  .flow-mini-phone span {
    margin-top: 7px;
    font-size: 0.34rem;
  }

  .flow-mini-phone strong {
    margin-top: 4px;
    font-size: 0.64rem;
  }
}

@media (max-width: 360px) {
  .mock-steps {
    grid-template-columns: 1fr;
  }

  .mock-steps article.flow-card,
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  }

  .mock-steps article.flow-card:last-child {
    border-bottom: 0;
  }
}

/* More balanced How it works section. */
.mock-flow {
  width: min(1240px, calc(100% - 96px));
  padding: clamp(44px, 4.6vw, 64px) 0 clamp(40px, 4.2vw, 58px);
}

.mock-flow h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 18px;
  color: var(--social-blue);
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  letter-spacing: 0.18em;
}

.mock-flow h2::before,
.mock-flow h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(34px, 3.6vw, 58px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(18, 91, 255, 0.36));
}

.mock-flow h2::before {
  right: 100%;
}

.mock-flow h2::after {
  left: 100%;
  transform: rotate(180deg);
}

.mock-steps {
  margin-top: clamp(26px, 2.8vw, 34px);
  border-radius: 22px;
}

.mock-steps article.flow-card {
  min-height: clamp(246px, 15.2vw, 286px);
  grid-template-rows: auto auto minmax(126px, 1fr);
  padding: clamp(8px, 0.8vw, 12px) clamp(22px, 2.55vw, 38px) clamp(6px, 0.8vw, 10px);
}

.mock-steps article.flow-card:not(:last-child) {
  border-right-color: rgba(148, 163, 184, 0.22);
}

.flow-step-heading {
  gap: 11px;
  min-height: 38px;
}

.flow-card .step-number {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  box-shadow:
    0 11px 22px rgba(18, 91, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.flow-card h3 {
  font-size: clamp(1.32rem, 1.48vw, 1.68rem);
}

.flow-card p {
  max-width: 12.4rem;
  margin-top: 10px;
  color: #263247;
  font-size: clamp(0.86rem, 0.88vw, 0.96rem);
  font-weight: 760;
  line-height: 1.28;
}

.flow-visual {
  min-height: clamp(136px, 9vw, 166px);
  margin-top: clamp(18px, 1.75vw, 26px);
}

.flow-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(4px, 0.4vw, 8px);
  width: clamp(118px, 8.5vw, 152px);
  height: clamp(18px, 1.5vw, 24px);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.13), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.flow-visual--image .flow-icon {
  width: clamp(158px, 10.3vw, 188px);
  height: clamp(158px, 10.3vw, 188px);
}

.flow-code-phone {
  width: clamp(96px, 5.7vw, 112px);
  height: clamp(138px, 7.8vw, 158px);
}

.flow-code-phone span {
  font-size: clamp(0.6rem, 0.5vw, 0.68rem);
}

.flow-code-phone strong {
  font-size: clamp(1.26rem, 1.1vw, 1.48rem);
}

.flow-spark--one {
  left: clamp(16%, 4vw, 21%);
}

.flow-spark--two {
  left: clamp(23%, 5vw, 29%);
}

.flow-spark--three {
  right: clamp(20%, 5vw, 26%);
}

.flow-spark--four {
  right: clamp(15%, 4vw, 20%);
}

.flow-visual--join {
  gap: clamp(6px, 0.65vw, 10px);
}

.flow-mini-phone {
  width: clamp(66px, 4.25vw, 80px);
  height: clamp(118px, 6.7vw, 138px);
}

.flow-mini-phone--one {
  transform: rotate(-7deg) translateY(5px);
}

.flow-mini-phone--three {
  transform: rotate(7deg) translateY(6px);
}

@media (max-width: 1100px) {
  .mock-flow {
    width: calc(100% - 44px);
  }

  .mock-steps article.flow-card {
    min-height: 252px;
    padding: 4px clamp(18px, 4vw, 38px) 28px;
  }
}

@media (max-width: 620px) {
  .mock-flow {
    width: calc(100% - 24px);
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .mock-flow h2 {
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .mock-flow h2::before,
  .mock-flow h2::after {
    width: 28px;
  }

  .mock-steps {
    margin-top: 24px;
    row-gap: 18px;
  }

  .mock-steps article.flow-card {
    min-height: 206px;
    grid-template-rows: auto auto minmax(90px, 1fr);
    padding: 0 12px 18px;
  }

  .flow-card .step-number {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .flow-card p {
    max-width: 8.4rem;
    margin-left: 35px;
    font-size: clamp(0.67rem, 3vw, 0.76rem);
  }

  .flow-visual {
    min-height: 92px;
    margin-top: 16px;
  }

  .flow-visual::before {
    width: 80px;
    height: 14px;
  }

  .flow-visual--image .flow-icon {
    width: clamp(92px, 29vw, 116px);
    height: clamp(92px, 29vw, 116px);
  }

  .flow-code-phone {
    width: 66px;
    height: 96px;
  }

  .flow-mini-phone {
    width: 48px;
    height: 86px;
  }
}

/* Finished How it works treatment. */
.mock-flow {
  width: min(1220px, calc(100% - 96px));
  padding-top: clamp(42px, 4.4vw, 62px);
  padding-bottom: clamp(40px, 4.4vw, 62px);
}

.mock-steps {
  gap: clamp(12px, 1.2vw, 18px);
  padding: clamp(10px, 1.1vw, 14px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 8%, rgba(18, 91, 255, 0.055), transparent 16rem),
    linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mock-steps article.flow-card {
  min-height: clamp(286px, 17vw, 318px);
  grid-template-rows: auto auto minmax(138px, 1fr);
  padding: clamp(16px, 1.35vw, 22px) clamp(16px, 1.5vw, 24px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 253, 255, 0.96));
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.mock-steps article.flow-card:not(:last-child),
.mock-steps article.flow-card:nth-child(odd),
.mock-steps article.flow-card:nth-child(-n + 2) {
  border-right: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.flow-step-heading {
  gap: 10px;
}

.flow-card .step-number {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
  font-size: 0.92rem;
}

.flow-card h3 {
  font-size: clamp(1.26rem, 1.34vw, 1.54rem);
}

.flow-card p {
  max-width: 13.2rem;
  margin-left: 42px;
  color: #314057;
  font-size: clamp(0.82rem, 0.84vw, 0.94rem);
  line-height: 1.26;
}

.flow-visual {
  min-height: clamp(136px, 9.4vw, 166px);
  margin-top: clamp(18px, 1.7vw, 24px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 82%, rgba(18, 91, 255, 0.07), transparent 7.5rem),
    linear-gradient(180deg, rgba(248, 251, 255, 0.48), rgba(255, 255, 255, 0));
}

.flow-visual--image .flow-icon {
  width: clamp(150px, 9.7vw, 178px);
  height: clamp(150px, 9.7vw, 178px);
}

.flow-code-phone {
  width: clamp(94px, 5.65vw, 108px);
  height: clamp(136px, 7.75vw, 154px);
}

.flow-mini-phone {
  width: clamp(64px, 4.1vw, 78px);
  height: clamp(116px, 6.6vw, 134px);
}

@media (max-width: 1100px) {
  .mock-flow {
    width: calc(100% - 44px);
  }

  .mock-steps {
    gap: 14px;
  }

  .mock-steps article.flow-card {
    min-height: 260px;
    padding: 18px 18px 24px;
  }
}

@media (max-width: 620px) {
  .mock-flow {
    width: calc(100% - 20px);
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .mock-steps {
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
  }

  .mock-steps article.flow-card {
    min-height: 208px;
    grid-template-rows: auto auto minmax(86px, 1fr);
    padding: 12px 10px 14px;
    border-radius: 12px;
  }

  .mock-steps article.flow-card:not(:last-child),
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    border-right: 1px solid rgba(148, 163, 184, 0.16);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  }

  .flow-step-heading {
    gap: 8px;
  }

  .flow-card .step-number {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .flow-card h3 {
    font-size: clamp(1rem, 4.6vw, 1.18rem);
  }

  .flow-card p {
    max-width: 7.6rem;
    margin-left: 35px;
    font-size: clamp(0.64rem, 2.9vw, 0.73rem);
    line-height: 1.22;
  }

  .flow-visual {
    min-height: 86px;
    margin-top: 14px;
    border-radius: 10px;
  }

  .flow-visual--image .flow-icon {
    width: clamp(84px, 28vw, 108px);
    height: clamp(84px, 28vw, 108px);
  }

  .flow-code-phone {
    width: 60px;
    height: 88px;
  }

  .flow-mini-phone {
    width: 43px;
    height: 78px;
  }
}

@media (max-width: 360px) {
  .mock-steps article.flow-card,
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    border-right: 1px solid rgba(148, 163, 184, 0.16);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  }
}

/* Level the How it works illustrations on one visual baseline. */
.mock-steps article.flow-card {
  align-content: stretch;
}

.flow-visual {
  align-self: end;
  min-height: 0;
  height: clamp(166px, 10.5vw, 188px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 0 clamp(10px, 0.75vw, 14px);
}

.flow-visual--image .flow-icon,
.flow-code-phone,
.flow-mini-phone {
  flex: 0 0 auto;
  align-self: flex-end;
}

.flow-visual--join {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 0.65vw, 10px);
}

.flow-mini-phone {
  transform-origin: 50% 100%;
}

.flow-mini-phone--one {
  transform: translateY(-4px) rotate(-7deg);
}

.flow-mini-phone--two {
  transform: none;
}

.flow-mini-phone--three {
  transform: translateY(-4px) rotate(7deg);
}

@media (max-width: 620px) {
  .flow-visual {
    height: 110px;
    padding-bottom: 7px;
  }

  .flow-mini-phone--one {
    transform: translateY(-2.75px) rotate(-7deg);
  }

  .flow-mini-phone--three {
    transform: translateY(-2.75px) rotate(7deg);
  }
}

/* Polished code-phone mockups for How it works. */
.flow-polished-phone,
.flow-phone-cluster {
  flex: 0 0 auto;
  align-self: flex-end;
}

.flow-polished-phone {
  position: relative;
  display: block;
  width: clamp(108px, 6.9vw, 132px);
  height: clamp(154px, 9.6vw, 178px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, #26334b 0%, #071023 42%, #020617 100%);
  box-shadow:
    0 18px 28px rgba(15, 23, 42, 0.18),
    0 5px 10px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -3px 0 rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
}

.flow-polished-phone::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 33px;
  background:
    radial-gradient(circle at 28% 15%, rgba(255, 255, 255, 0.96), transparent 18%),
    linear-gradient(150deg, rgba(18, 91, 255, 0.72), rgba(8, 15, 31, 0.02) 52%);
  opacity: 0.34;
  filter: blur(0.2px);
}

.flow-polished-phone::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  z-index: 3;
  width: 42%;
  height: 12px;
  border-radius: 0 0 11px 11px;
  background:
    linear-gradient(180deg, #040816, #111827);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.flow-phone-glass {
  position: absolute;
  inset: 8px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 14%, rgba(18, 91, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 64%, #eaf2ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -18px 28px rgba(18, 91, 255, 0.08);
}

.flow-phone-glass::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 46%;
  height: 100%;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.05) 54%, transparent 55%);
  opacity: 0.72;
  pointer-events: none;
}

.flow-room-card {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 76%;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 8px 12px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%);
}

.flow-room-card span {
  color: #71839e;
  font-size: clamp(0.5rem, 0.48vw, 0.62rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.flow-room-card strong {
  color: #071023;
  font-size: clamp(1.16rem, 1.1vw, 1.46rem);
  font-weight: 950;
  letter-spacing: 0.055em;
  line-height: 0.92;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.flow-phone-dock {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 46%;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #e5efff, #cfdfff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.flow-phone-cluster {
  position: relative;
  display: block;
  width: clamp(184px, 12.2vw, 224px);
  height: clamp(142px, 9.4vw, 170px);
}

.flow-phone-cluster::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 74%;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.16), transparent 70%);
  transform: translateX(-50%);
}

.flow-polished-phone--mini {
  position: absolute;
  bottom: 0;
  width: clamp(62px, 4.35vw, 80px);
  height: clamp(112px, 7.45vw, 138px);
  border-radius: 22px;
}

.flow-polished-phone--mini::after {
  top: 8px;
  height: 9px;
  border-radius: 0 0 9px 9px;
}

.flow-polished-phone--mini .flow-phone-glass {
  inset: 6px;
  border-radius: 17px;
}

.flow-polished-phone--mini .flow-room-card {
  gap: 3px;
  width: 78%;
  padding: 7px 4px 8px;
  border-radius: 10px;
}

.flow-polished-phone--mini .flow-room-card span {
  font-size: clamp(0.31rem, 0.31vw, 0.42rem);
}

.flow-polished-phone--mini .flow-room-card strong {
  font-size: clamp(0.72rem, 0.72vw, 0.96rem);
  letter-spacing: 0.045em;
}

.flow-polished-phone--left {
  left: 5%;
  z-index: 1;
  transform: rotate(-7deg);
  transform-origin: 50% 100%;
}

.flow-polished-phone--center {
  left: 50%;
  z-index: 3;
  width: clamp(68px, 4.75vw, 86px);
  height: clamp(124px, 8.05vw, 150px);
  transform: translateX(-50%);
}

.flow-polished-phone--right {
  right: 5%;
  z-index: 1;
  transform: rotate(7deg);
  transform-origin: 50% 100%;
}

@media (max-width: 620px) {
  .flow-polished-phone--single {
    width: 74px;
    height: 108px;
    border-radius: 18px;
  }

  .flow-polished-phone--single::before {
    inset: -3px;
    border-radius: 21px;
  }

  .flow-polished-phone--single::after {
    top: 6px;
    height: 8px;
    border-radius: 0 0 8px 8px;
  }

  .flow-polished-phone--single .flow-phone-glass {
    inset: 5px;
    border-radius: 14px;
  }

  .flow-polished-phone--single .flow-room-card {
    gap: 3px;
    width: 77%;
    padding: 6px 4px 7px;
    border-radius: 10px;
  }

  .flow-polished-phone--single .flow-room-card span {
    font-size: 0.34rem;
  }

  .flow-polished-phone--single .flow-room-card strong {
    font-size: 0.84rem;
  }

  .flow-polished-phone--single .flow-phone-dock {
    bottom: 8px;
    height: 6px;
  }

  .flow-phone-cluster {
    width: 136px;
    height: 100px;
  }

  .flow-polished-phone--mini {
    width: 47px;
    height: 86px;
    border-radius: 16px;
  }

  .flow-polished-phone--mini::after {
    top: 5px;
    height: 7px;
  }

  .flow-polished-phone--mini .flow-phone-glass {
    inset: 4px;
    border-radius: 12px;
  }

  .flow-polished-phone--mini .flow-room-card {
    width: 80%;
    padding: 5px 2px 6px;
    border-radius: 7px;
  }

  .flow-polished-phone--mini .flow-room-card span {
    font-size: 0.24rem;
  }

  .flow-polished-phone--mini .flow-room-card strong {
    font-size: 0.52rem;
  }

  .flow-polished-phone--center {
    width: 52px;
    height: 96px;
  }
}

/* Pixel-match the reference How it works section. */
.mock-flow {
  width: min(1240px, calc(100% - 96px));
  padding: clamp(44px, 4.4vw, 58px) 0 clamp(8px, 1.1vw, 14px);
  text-align: center;
}

.mock-flow h2 {
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--social-blue);
  font-size: clamp(0.72rem, 0.76vw, 0.84rem);
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.mock-flow h2::before,
.mock-flow h2::after,
.mock-flow .mock-section-note,
.mock-steps::before {
  display: none;
}

.mock-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(30px, 3vw, 38px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mock-steps article.flow-card,
.mock-steps article.flow-card:nth-child(odd),
.mock-steps article.flow-card:nth-child(-n + 2) {
  position: relative;
  min-height: clamp(210px, 15.2vw, 238px);
  display: grid;
  grid-template-rows: 32px 48px 1fr;
  align-content: start;
  justify-items: stretch;
  gap: 0;
  padding: 0 clamp(24px, 2.65vw, 42px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.mock-steps article.flow-card:not(:last-child) {
  border-right: 1px solid rgba(148, 163, 184, 0.28);
}

.mock-steps article.flow-card::after,
.mock-steps article.flow-card:not(:last-child)::after {
  display: none;
}

.flow-step-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
}

.flow-card .step-number,
.flow-card .step-number--blue,
.flow-card .step-number--green,
.flow-card .step-number--purple,
.flow-card .step-number--red {
  position: static;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--social-blue);
  box-shadow: 0 7px 16px rgba(18, 91, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  transform: none;
}

.flow-card h3 {
  margin: 0;
  color: #071023;
  font-size: clamp(1.22rem, 1.28vw, 1.46rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

.flow-card p {
  max-width: 11.4rem;
  margin: 10px 0 0 38px;
  color: #243147;
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  font-weight: 720;
  line-height: 1.32;
  text-align: left;
}

.flow-visual {
  position: relative;
  width: 100%;
  height: clamp(118px, 8.8vw, 142px);
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  margin-top: clamp(26px, 2.2vw, 34px);
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.flow-visual::before {
  display: none;
}

.mock-code-phone {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: clamp(82px, 5.4vw, 96px);
  height: clamp(126px, 7.9vw, 142px);
  border: 4px solid #071023;
  border-bottom-width: 0;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow:
    0 13px 18px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px rgba(18, 91, 255, 0.05);
  text-rendering: geometricPrecision;
}

.mock-code-phone::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 38px;
  height: 12px;
  border-radius: 0 0 10px 10px;
  background: #071023;
  transform: translateX(-50%);
}

.mock-code-phone span {
  width: 100%;
  margin-top: 8px;
  color: #71839e;
  font-size: clamp(0.48rem, 0.45vw, 0.58rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.mock-code-phone strong {
  margin-top: 7px;
  color: #071023;
  font-size: clamp(1.05rem, 1.02vw, 1.32rem);
  font-weight: 950;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.flow-visual--open .flow-spark {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.flow-visual--open .flow-spark--one {
  left: 15%;
  top: 24%;
  background: #8b5cf6;
  transform: rotate(35deg);
}

.flow-visual--open .flow-spark--two {
  left: 23%;
  top: 64%;
  background: #ffd13d;
  transform: rotate(-25deg);
}

.flow-visual--open .flow-spark--three {
  right: 18%;
  top: 29%;
  background: #62d6ea;
  transform: rotate(-18deg);
}

.flow-visual--open .flow-spark--four {
  right: 12%;
  top: 65%;
  background: #ff4f87;
  transform: rotate(35deg);
}

.mock-pick-tray {
  position: relative;
  width: clamp(150px, 9.8vw, 176px);
  height: clamp(100px, 6.7vw, 122px);
  display: block;
}

.mock-pick-tray::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 74%;
  border: 3px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px 28px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
  box-shadow:
    0 12px 22px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.mock-pick-tray::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 76%;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.1), transparent 70%);
  transform: translateX(-50%);
}

.mock-pick-tile {
  position: absolute;
  z-index: 1;
  width: clamp(31px, 2.2vw, 38px);
  height: clamp(31px, 2.2vw, 38px);
  border-radius: 8px;
  box-shadow:
    0 8px 15px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.mock-pick-tile--red {
  left: 24%;
  bottom: 25%;
  background: linear-gradient(150deg, #ff6f94, #f43f66);
}

.mock-pick-tile--purple {
  left: 48%;
  bottom: 43%;
  background: linear-gradient(150deg, #a855f7, #7c3aed);
}

.mock-pick-tile--blue {
  left: 48%;
  bottom: 17%;
  background: linear-gradient(150deg, #38bdf8, #125bff);
}

.mock-pick-tile--yellow {
  right: 16%;
  bottom: 30%;
  background: linear-gradient(150deg, #ffd75d, #f9b51c);
}

.mock-pick-tile--red::before,
.mock-pick-tile--red::after,
.mock-pick-tile--blue::before,
.mock-pick-tile--blue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mock-pick-tile--red::after,
.mock-pick-tile--blue::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mock-pick-tile--purple::before,
.mock-pick-tile--purple::after,
.mock-pick-tile--yellow::before,
.mock-pick-tile--yellow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #fff;
}

.mock-pick-tile--purple::before {
  left: 50%;
  top: 22%;
  width: 3px;
  height: 56%;
  transform: translateX(-50%);
}

.mock-pick-tile--purple::after {
  left: 22%;
  top: 50%;
  width: 56%;
  height: 3px;
  transform: translateY(-50%);
}

.mock-pick-tile--yellow::before {
  left: 28%;
  top: 38%;
  width: 7px;
  height: 7px;
  box-shadow: 12px 0 0 #fff, 6px 11px 0 #fff;
}

.mock-pick-tile--yellow::after {
  left: 26%;
  bottom: 22%;
  width: 48%;
  height: 3px;
  opacity: 0.8;
}

.mock-phone-stack {
  position: relative;
  width: clamp(150px, 9.8vw, 176px);
  height: clamp(116px, 7.45vw, 136px);
  display: block;
}

.mock-phone-stack .mock-code-phone {
  position: absolute;
  bottom: 0;
  width: clamp(55px, 3.7vw, 66px);
  height: clamp(99px, 6.4vw, 116px);
  border-width: 4px;
  border-bottom-width: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: none;
  transform-origin: 50% 100%;
}

.mock-phone-stack .mock-code-phone::before {
  width: 25px;
  height: 9px;
}

.mock-phone-stack .mock-code-phone span {
  margin-top: 9px;
  color: #6c95e7;
  font-size: clamp(0.32rem, 0.32vw, 0.42rem);
}

.mock-phone-stack .mock-code-phone strong {
  margin-top: 5px;
  font-size: clamp(0.74rem, 0.73vw, 0.92rem);
}

.mock-code-phone--left {
  left: 5%;
  transform: rotate(-7deg);
}

.mock-code-phone--center {
  left: 50%;
  transform: translateX(-50%);
}

.mock-code-phone--right {
  right: 5%;
  transform: rotate(7deg);
}

.mock-party-popper {
  position: relative;
  width: clamp(120px, 8.3vw, 150px);
  height: clamp(104px, 7.2vw, 130px);
  display: block;
}

.mock-popper-cone {
  position: absolute;
  left: 20%;
  bottom: 8%;
  width: 54%;
  height: 60%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 16%, transparent 16% 32%, rgba(255, 255, 255, 0.18) 32% 47%, transparent 47% 64%, rgba(255, 255, 255, 0.16) 64% 80%, transparent 80%),
    linear-gradient(150deg, #a855f7, #6f2de2 66%, #4c1d95);
  clip-path: polygon(0 100%, 28% 0, 100% 72%);
  filter: drop-shadow(0 9px 10px rgba(15, 23, 42, 0.12));
  transform: rotate(-13deg);
}

.mock-popper-stream,
.mock-popper-dot {
  position: absolute;
  display: block;
}

.mock-popper-stream {
  width: 8%;
  height: 26%;
  border-radius: 999px;
}

.mock-popper-stream--one {
  right: 24%;
  top: 8%;
  background: #f43f66;
  transform: rotate(34deg);
}

.mock-popper-stream--two {
  right: 10%;
  top: 20%;
  background: #f9b51c;
  transform: rotate(38deg);
}

.mock-popper-stream--three {
  right: 37%;
  top: 23%;
  background: #62d6ea;
  transform: rotate(-28deg);
}

.mock-popper-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-popper-dot--one {
  right: 45%;
  top: 7%;
  background: #8b5cf6;
}

.mock-popper-dot--two {
  right: 18%;
  top: 45%;
  background: #125bff;
}

.mock-popper-dot--three {
  right: 5%;
  top: 36%;
  background: #f9b51c;
}

.mock-popper-dot--four {
  right: 53%;
  top: 39%;
  background: #ff4f87;
}

@media (max-width: 1100px) {
  .mock-flow {
    width: calc(100% - 120px);
  }

  .mock-steps article.flow-card,
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    min-height: 222px;
    padding: 0 clamp(20px, 4vw, 38px);
  }
}

@media (max-width: 620px) {
  .mock-flow {
    width: calc(100% - 24px);
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .mock-flow h2 {
    font-size: 0.72rem;
  }

  .mock-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    row-gap: 22px;
  }

  .mock-steps article.flow-card,
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    min-height: 204px;
    grid-template-rows: 30px 46px 1fr;
    padding: 0 12px 16px;
    border-right: 0;
    border-bottom: 0;
  }

  .mock-steps article.flow-card:nth-child(odd) {
    border-right: 1px solid rgba(148, 163, 184, 0.24);
  }

  .mock-steps article.flow-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  .flow-step-heading {
    gap: 8px;
  }

  .flow-card .step-number {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }

  .flow-card h3 {
    font-size: clamp(1.04rem, 5vw, 1.2rem);
  }

  .flow-card p {
    max-width: 8rem;
    margin: 8px 0 0 34px;
    font-size: clamp(0.66rem, 3vw, 0.74rem);
    line-height: 1.26;
  }

  .flow-visual {
    height: 106px;
    margin-top: 18px;
  }

  .mock-code-phone {
    width: 64px;
    height: 96px;
    border-width: 3px;
    border-bottom-width: 0;
    border-radius: 18px 18px 0 0;
  }

  .mock-code-phone::before {
    top: -3px;
    width: 30px;
    height: 9px;
  }

  .mock-code-phone span {
    font-size: 0.38rem;
  }

  .mock-code-phone strong {
    font-size: 0.86rem;
  }

  .flow-visual--open .flow-spark {
    width: 6px;
    height: 6px;
  }

  .mock-pick-tray {
    width: 120px;
    height: 94px;
  }

  .mock-pick-tile {
    width: 27px;
    height: 27px;
    border-radius: 7px;
  }

  .mock-phone-stack {
    width: 126px;
    height: 98px;
  }

  .mock-phone-stack .mock-code-phone {
    width: 45px;
    height: 82px;
    border-width: 3px;
    border-bottom-width: 0;
    border-radius: 14px 14px 0 0;
  }

  .mock-phone-stack .mock-code-phone::before {
    top: -3px;
    width: 21px;
    height: 7px;
  }

  .mock-phone-stack .mock-code-phone span {
    font-size: 0.24rem;
  }

  .mock-phone-stack .mock-code-phone strong {
    font-size: 0.56rem;
  }

  .mock-party-popper {
    width: 106px;
    height: 96px;
  }
}

@media (max-width: 360px) {
  .mock-steps {
    grid-template-columns: 1fr;
  }

  .mock-steps article.flow-card,
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  .mock-steps article.flow-card:last-child {
    border-bottom: 0;
  }
}

/* End-of-file polished generated How it works artwork overrides. */
.mock-steps article.flow-card,
.mock-steps article.flow-card:nth-child(odd),
.mock-steps article.flow-card:nth-child(-n + 2) {
  min-height: clamp(238px, 16.8vw, 270px);
  grid-template-rows: 32px 48px minmax(158px, 1fr);
}

.flow-visual {
  height: clamp(158px, 11vw, 180px);
  align-items: flex-end;
  margin-top: clamp(18px, 1.6vw, 26px);
  isolation: isolate;
}

.flow-polished-art {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: saturate(1.03) contrast(1.02);
}

.flow-polished-art--open {
  height: clamp(156px, 10.5vw, 178px);
}

.flow-polished-art--pick {
  height: clamp(128px, 9vw, 154px);
  margin-top: clamp(8px, 0.7vw, 13px);
}

.flow-polished-art--join {
  height: clamp(136px, 9.3vw, 162px);
  margin-top: clamp(8px, 0.65vw, 12px);
}

.flow-polished-art--play {
  height: clamp(132px, 9vw, 158px);
  margin-top: clamp(7px, 0.65vw, 12px);
}

.flow-extra-confetti {
  position: absolute;
  z-index: 2;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  box-shadow: 0 5px 10px rgba(15, 23, 42, 0.1);
  pointer-events: none;
}

.flow-extra-confetti--one {
  left: 9%;
  top: 14%;
  background: #125bff;
  transform: rotate(22deg);
}

.flow-extra-confetti--two {
  left: 17%;
  top: 42%;
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: #ff4f87;
  transform: rotate(-28deg);
}

.flow-extra-confetti--three {
  left: 22%;
  top: 76%;
  background: #f9b51c;
  transform: rotate(41deg);
}

.flow-extra-confetti--four {
  right: 12%;
  top: 17%;
  background: #8b5cf6;
  transform: rotate(-24deg);
}

.flow-extra-confetti--five {
  right: 18%;
  top: 48%;
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: #62d6ea;
  transform: rotate(32deg);
}

.flow-extra-confetti--six {
  right: 22%;
  top: 77%;
  background: #ffb21d;
  transform: rotate(-18deg);
}

.flow-extra-confetti--seven {
  left: 36%;
  top: 5%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #62d6ea;
}

.flow-extra-confetti--eight {
  right: 36%;
  top: 6%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4f87;
}

@media (max-width: 1100px) {
  .flow-visual {
    height: 164px;
  }

  .flow-polished-art--open {
    height: 160px;
  }

  .flow-polished-art--pick {
    height: 138px;
  }

  .flow-polished-art--join {
    height: 145px;
  }

  .flow-polished-art--play {
    height: 140px;
  }
}

@media (max-width: 620px) {
  .mock-steps article.flow-card,
  .mock-steps article.flow-card:nth-child(odd),
  .mock-steps article.flow-card:nth-child(-n + 2) {
    min-height: 204px;
    grid-template-rows: 30px 46px minmax(114px, 1fr);
  }

  .flow-visual {
    height: 116px;
    margin-top: 14px;
  }

  .flow-polished-art--open {
    height: 116px;
  }

  .flow-polished-art--pick {
    height: 98px;
    margin-top: 7px;
  }

  .flow-polished-art--join {
    height: 102px;
    margin-top: 7px;
  }

  .flow-polished-art--play {
    height: 100px;
    margin-top: 7px;
  }

  .flow-extra-confetti {
    width: 5px;
    height: 5px;
  }

  .flow-extra-confetti--two,
  .flow-extra-confetti--five {
    width: 4px;
    height: 10px;
  }
}
