:root {
  --play-ink: #171717;
  --play-muted: #66635f;
  --play-line: #dedbd5;
  --play-paper: #ffffff;
  --play-warm: #f7f5f1;
  --play-blue: #2f8df5;
  --play-blue-text: #1565c9; /* AA-safe blue for small text + white-on-blue */
  --play-blue-soft: #dceeff;
  --play-green: #67c93d;
  --play-green-soft: #e6f7dc;
  --play-orange: #ff7629;
  --play-orange-soft: #ffeadc;
  --play-yellow: #f7c900;
  --play-yellow-soft: #fff5bf;
  --play-red: #f04c3d;
  --play-red-soft: #ffe2df;
  --play-shadow: 0 14px 34px rgba(23, 23, 23, 0.08);
  --play-shadow-small: 0 8px 20px rgba(23, 23, 23, 0.07);
  --play-radius: 30px;
  --play-max: 1280px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body.home-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--play-paper);
  color: var(--play-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.home-page button,
.home-page input,
.home-page textarea,
.home-page select {
  font: inherit;
}

.home-page button,
.home-page a {
  -webkit-tap-highlight-color: transparent;
}

/* :where() keeps this at zero specificity so component classes
   (.pill-button, .skip-link, ...) can still set their own colour. */
:where(.home-page) a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--play-ink);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.play-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  padding: 8px 10px 8px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 9px 26px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.play-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.11);
}

.play-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--play-ink);
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.play-logo__egg {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--play-ink);
  border-radius: 52% 48% 46% 54% / 60% 59% 41% 40%;
  background: var(--play-yellow);
  transform: rotate(-7deg);
}

.play-logo__egg::before,
.play-logo__egg::after {
  position: absolute;
  top: 15px;
  width: 3px;
  height: 4px;
  border-radius: 50%;
  background: var(--play-ink);
  content: "";
}

.play-logo__egg::before { left: 11px; }
.play-logo__egg::after { right: 11px; }

.play-logo__egg i {
  position: absolute;
  top: 21px;
  width: 7px;
  height: 4px;
  border: 2px solid var(--play-ink);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.play-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.play-nav a {
  position: relative;
  display: inline-block;
  color: #343230;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  text-decoration: none;
}

.play-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--play-blue);
  content: "";
  transition: transform 220ms ease;
}

.play-nav a:hover::after,
.play-nav a:focus-visible::after {
  transform: scaleX(1);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 2px solid var(--play-ink);
  border-radius: 999px;
  background: var(--play-ink);
  color: #fff;
  padding: 13px 23px;
  box-shadow: 0 5px 0 rgba(23, 23, 23, 0.13);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1.4), box-shadow 280ms ease, background 220ms ease;
}

.pill-button span {
  transition: transform 220ms ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 8px 0 rgba(23, 23, 23, 0.12);
}

.pill-button:hover span,
.pill-button:focus-visible span {
  transform: translate(2px, -2px);
}

.pill-button--small {
  min-height: 48px;
  padding: 11px 18px;
  font-size: 14px;
}

.pill-button--paper {
  border-color: #fff;
  background: #fff;
  color: var(--play-ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--play-ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 220ms ease;
}

.section-pad,
.warm-band {
  padding: clamp(96px, 11vw, 160px) max(24px, calc((100vw - var(--play-max)) / 2));
}

.warm-band {
  position: relative;
  margin: 0 16px;
  border-radius: 46px;
  background: var(--play-warm);
}

.eyebrow-play,
.card-label {
  margin: 0 0 18px;
  color: var(--play-blue-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-intro {
  width: min(760px, 100%);
  margin-bottom: 58px;
}

.section-intro--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro h2,
.builder-section h2,
.orbit-copy h2,
.ownership-copy h2,
.guarantee-copy h2,
.faq-intro h2,
.value-statement h2,
.final-cta-play h2 {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.section-intro h2 span,
.builder-section h2 span,
.orbit-copy h2 span,
.ownership-copy h2 span,
.guarantee-copy h2 span,
.faq-intro h2 span,
.value-statement h2 span,
.final-cta-play h2 span {
  color: #77736f;
}

/* the muted second line needs to go darker on the yellow panel */
.ownership-copy h2 span {
  color: #5f5c57;
}

.section-intro > p:last-child,
.builder-section__copy > p,
.orbit-copy > p,
.ownership-copy > p,
.guarantee-copy > p,
.faq-intro > p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--play-muted);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.7;
}

.section-intro--center > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.hero-play {
  position: relative;
  display: grid;
  min-height: 940px;
  padding: 150px 20px 62px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.hero-play::before,
.hero-play::after {
  position: absolute;
  z-index: 1;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  content: "";
  animation: float-confetti 5s ease-in-out infinite;
}

.hero-play::before {
  top: 20%;
  left: 48%;
  background: var(--play-orange);
  transform: rotate(18deg);
}

.hero-play::after {
  top: 75%;
  right: 48%;
  background: var(--play-blue);
  animation-delay: -2s;
  transform: rotate(-12deg);
}

.hero-play__art {
  position: absolute;
  z-index: 0;
  top: 88px;
  left: 50%;
  width: min(1536px, 122vw);
  max-width: none;
  height: 790px;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.hero-play__copy {
  position: relative;
  z-index: 2;
  width: min(880px, 68vw);
  margin-top: -48px;
  padding: 56px 48px 46px;
  border-radius: 46%;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.hero-play__copy::before {
  position: absolute;
  z-index: -1;
  inset: 14% 4%;
  border-radius: 50%;
  background: #fff;
  content: "";
  filter: blur(20px);
}

.hero-play h1 {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.hero-play h1 span {
  color: #68645f;
}

.hero-play__lede {
  width: min(700px, 100%);
  margin: 28px auto 0;
  color: var(--play-muted);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.65;
}

.hero-play__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
}

.soft-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--play-ink);
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}

.soft-link:hover,
.soft-link:focus-visible {
  color: #126dd2;
  text-decoration: underline;
}

.hero-play__maker {
  margin: 25px 0 0;
  color: #77736f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-badges {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 32px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--play-line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 15px;
  box-shadow: var(--play-shadow-small);
  color: #3e3b37;
  font-size: 13px;
  font-weight: 700;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  transform: rotate(12deg);
}

.dot--blue { background: var(--play-blue); }
.dot--green { background: var(--play-green); }
.dot--orange { background: var(--play-orange); }
.dot--red { background: var(--play-red); }

.problem-band {
  overflow: hidden;
}

.problem-band::before,
.problem-band::after {
  position: absolute;
  border: 3px solid var(--play-ink);
  content: "";
}

.problem-band::before {
  top: 78px;
  left: 7%;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--play-red);
  transform: rotate(18deg);
}

.problem-band::after {
  right: 8%;
  bottom: 78px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--play-blue);
}

.mess-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) 70px minmax(240px, 1.35fr);
  align-items: center;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.mess-card {
  display: grid;
  min-height: 190px;
  align-content: center;
  justify-items: center;
  border: 2px solid var(--play-ink);
  border-radius: 26px;
  background: #fff;
  padding: 24px 16px;
  box-shadow: 7px 8px 0 rgba(23, 23, 23, 0.1);
  text-align: center;
  transition: transform 300ms cubic-bezier(0.2, 0.9, 0.2, 1.4);
}

.mess-card:hover { transform: translateY(-7px) rotate(-1deg); }
.mess-card--sheet { transform: rotate(2deg); }
.mess-card--brain { transform: rotate(-2deg); }
.mess-card--hatch { background: var(--play-yellow-soft); }

.mess-card > span:first-child:not(.mini-egg) {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  border: 2px solid var(--play-ink);
  border-radius: 16px;
  font-size: 24px;
}

.mess-card--mail > span { background: var(--play-blue-soft); }
.mess-card--sheet > span { background: var(--play-green-soft); }
.mess-card--brain > span { background: var(--play-orange-soft); }

.mess-card b {
  font-family: "Nunito Sans", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.mess-card small {
  margin-top: 8px;
  color: var(--play-muted);
  font-size: 13px;
}

.mess-arrow {
  color: var(--play-blue);
  font-family: "Nunito Sans", sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-align: center;
}

.mini-egg {
  position: relative;
  width: 62px;
  height: 70px;
  margin-bottom: 10px;
  border: 3px solid var(--play-ink);
  border-radius: 52% 48% 46% 54% / 60% 59% 41% 40%;
  background: var(--play-yellow);
}

.mini-egg::before,
.mini-egg::after {
  position: absolute;
  top: 29px;
  width: 5px;
  height: 7px;
  border-radius: 50%;
  background: var(--play-ink);
  content: "";
}

.mini-egg::before { left: 18px; }
.mini-egg::after { right: 18px; }

.problem-close {
  width: min(820px, 100%);
  margin: 68px auto 0;
  color: #57534f;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.25;
  text-align: center;
}

.problem-close strong { color: var(--play-ink); }

.transformation {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(620px, 1.3fr);
  align-items: start;
  gap: 80px;
}

.transformation .section-intro {
  position: sticky;
  top: 130px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.outcome-card {
  min-height: 310px;
  border: 2px solid var(--play-ink);
  border-radius: var(--play-radius);
  padding: 28px;
  box-shadow: 7px 8px 0 rgba(23, 23, 23, 0.1);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1.4), box-shadow 250ms ease;
}

.outcome-card:nth-child(even) { margin-top: 34px; }
.outcome-card:hover { transform: translateY(-8px) rotate(0.8deg); box-shadow: 10px 12px 0 rgba(23, 23, 23, 0.1); }
.outcome-card--blue { background: var(--play-blue-soft); }
.outcome-card--green { background: var(--play-green-soft); }
.outcome-card--yellow { background: var(--play-yellow-soft); }
.outcome-card--red { background: var(--play-red-soft); }

.outcome-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 50px;
  place-items: center;
  border: 2px solid var(--play-ink);
  border-radius: 50%;
  background: #fff;
  font-size: 25px;
  font-weight: 900;
}

.outcome-card h3,
.build-card h3,
.difference-list h3,
.comparison-card h3,
.week h3,
.phone-story h3 {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.outcome-card p,
.build-card p,
.difference-list p,
.comparison-card p,
.week p,
.phone-story p {
  margin: 15px 0 0;
  color: #5e5a55;
  line-height: 1.65;
}

.builds {
  padding-top: 30px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  width: min(var(--play-max), 100%);
  margin: 0 auto;
}

.build-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--play-line);
  border-radius: 34px;
  background: var(--play-warm);
  padding: 30px;
  box-shadow: var(--play-shadow-small);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1.4), box-shadow 280ms ease;
}

.build-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--play-shadow);
}

.build-card--large {
  grid-column: span 4;
  flex-direction: row;
  align-items: center;
  background: var(--play-blue-soft);
}

.build-card--portal { background: var(--play-yellow-soft); }
.build-card--automation { background: var(--play-green-soft); }
.build-card--reporting { background: var(--play-red-soft); }
.build-card--mobile { grid-column: span 3; background: var(--play-orange-soft); }
.build-card--reporting { grid-column: span 3; }

.build-card__copy { position: relative; z-index: 2; max-width: 480px; }
.build-card .card-label { margin-bottom: 15px; }

.mini-ui {
  width: min(390px, 47%);
  overflow: hidden;
  border: 3px solid var(--play-ink);
  border-radius: 23px;
  background: #fff;
  box-shadow: 9px 10px 0 rgba(23, 23, 23, 0.1);
  transform: rotate(2deg);
}

.mini-ui__top {
  display: flex;
  gap: 6px;
  padding: 11px;
  border-bottom: 2px solid var(--play-ink);
  background: var(--play-blue);
}

.mini-ui__top i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--play-ink);
  border-radius: 50%;
  background: #fff;
}

.mini-ui__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
}

.mini-ui__body span { grid-column: 1; border-radius: 9px; background: #e4e4e4; }
.mini-ui__body span:nth-child(1) { background: var(--play-yellow); }
.mini-ui__body b { grid-column: 2; grid-row: 1 / 4; border-radius: 14px; background: var(--play-green-soft); }

.portal-chip {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 40px;
  border: 3px solid var(--play-ink);
  border-radius: 22px;
  background: #fff;
  padding: 17px;
  box-shadow: 8px 9px 0 rgba(23, 23, 23, 0.1);
  transform: rotate(-2deg);
}

.portal-chip span { display: grid; grid-row: span 2; place-items: center; border-radius: 16px; background: var(--play-green); color: var(--play-ink); font-size: 28px; font-weight: 900; }
.portal-chip i { border-radius: 5px; background: #dedede; }
.portal-chip i:last-child { width: 68%; }

.node-path {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}

.node-path i {
  width: 55px;
  height: 55px;
  border: 3px solid var(--play-ink);
  border-radius: 18px;
  background: #fff;
}

.node-path i:nth-of-type(2) { background: var(--play-blue); }
.node-path i:nth-of-type(3) { background: var(--play-orange); }
.node-path b { width: 40px; height: 3px; background: var(--play-ink); }

.bar-chart {
  display: flex;
  min-height: 150px;
  align-items: end;
  gap: 12px;
  margin: 30px 14px 0;
  padding: 20px 20px 0;
  border: 3px solid var(--play-ink);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
}

.bar-chart i { flex: 1; height: 30%; border: 2px solid var(--play-ink); border-bottom: 0; border-radius: 8px 8px 0 0; background: var(--play-blue); }
.bar-chart i:nth-child(2) { height: 52%; background: var(--play-yellow); }
.bar-chart i:nth-child(3) { height: 75%; background: var(--play-green); }
.bar-chart i:nth-child(4) { height: 62%; background: var(--play-orange); }
.bar-chart i:nth-child(5) { height: 90%; background: var(--play-red); }

.tiny-phone {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 150px;
  height: 235px;
  align-self: center;
  margin-top: 24px;
  border: 4px solid var(--play-ink);
  border-radius: 27px;
  background: #fff;
  padding: 25px 14px 15px;
  box-shadow: 8px 10px 0 rgba(23, 23, 23, 0.1);
  transform: rotate(4deg);
}

.tiny-phone::before { position: absolute; width: 45px; height: 6px; margin: -14px 0 0 36px; border-radius: 5px; background: var(--play-ink); content: ""; }
.tiny-phone span { grid-column: 1 / -1; border-radius: 12px; background: var(--play-blue-soft); }
.tiny-phone i { border-radius: 10px; background: var(--play-yellow); }
.tiny-phone i:nth-of-type(2) { background: var(--play-green); }
.tiny-phone i:nth-of-type(3) { grid-column: 1 / -1; background: var(--play-orange-soft); }

.product-showcase {
  overflow: hidden;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--play-max), 100%);
  margin: 0 auto;
}

.screen-card {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--play-ink);
  border-radius: 28px;
  box-shadow: 8px 9px 0 rgba(23, 23, 23, 0.11);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1.4);
}

.screen-card:nth-child(2) { transform: translateY(28px); }
.screen-card:hover { transform: translateY(-7px) rotate(-0.7deg); }
.screen-card:nth-child(2):hover { transform: translateY(20px) rotate(0.7deg); }

.screen-card__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 14px;
  border-bottom: 2px solid var(--play-ink);
}

.screen-card--blue .screen-card__bar { background: var(--play-blue); }
.screen-card--yellow .screen-card__bar { background: var(--play-yellow); }
.screen-card--green .screen-card__bar { background: var(--play-green); }

.screen-card__bar span { width: 10px; height: 10px; border: 1.5px solid var(--play-ink); border-radius: 50%; background: #fff; }
.screen-card__bar b { margin-left: auto; font-size: 12px; }
.screen-card img { display: block; width: 100%; height: auto; aspect-ratio: 1.6; object-fit: cover; object-position: top center; }
.screen-card figcaption { display: grid; gap: 4px; min-height: 105px; padding: 20px; background: #fff; }
.screen-card figcaption span { font-family: "Nunito Sans", sans-serif; font-size: 20px; font-weight: 900; }
.screen-card figcaption small { color: var(--play-muted); }

.phone-story {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 70px;
  width: min(1140px, 100%);
  margin: 150px auto 0;
}

.phone-story__copy h3 { font-size: clamp(38px, 4.5vw, 64px); }
.phone-story__copy p:last-child { font-size: 18px; }

.phone-trio {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  min-height: 530px;
}

.phone {
  position: relative;
  width: 185px;
  margin: 0;
  border: 8px solid var(--play-ink);
  border-radius: 36px;
  background: var(--play-ink);
  box-shadow: 12px 16px 0 rgba(23, 23, 23, 0.12);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1.4);
}

.phone::before { position: absolute; z-index: 2; top: 8px; left: 50%; width: 64px; height: 17px; transform: translateX(-50%); border-radius: 999px; background: var(--play-ink); content: ""; }
.phone--one { transform: rotate(-6deg) translateY(24px); }
.phone--two { transform: translateY(-34px); }
.phone--three { transform: rotate(6deg) translateY(24px); }
.phone:hover { transform: translateY(-50px) rotate(0); }

.phone-screen {
  height: 390px;
  overflow: hidden;
  border-radius: 27px;
  background: #fff;
}

.phone-screen img { width: 720px; max-width: none; height: 100%; object-fit: cover; object-position: top left; }
.phone--two .phone-screen img { object-position: 34% top; }
.phone--three .phone-screen img { object-position: 70% top; }

.phone-chip {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: -46px;
  width: max-content;
  transform: translateX(50%);
  border: 2px solid var(--play-ink);
  border-radius: 999px;
  background: #fff;
  padding: 7px 12px;
  box-shadow: 4px 4px 0 rgba(23, 23, 23, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.phone--one .phone-chip { background: var(--play-yellow-soft); }
.phone--two .phone-chip { background: var(--play-blue-soft); }
.phone--three .phone-chip { background: var(--play-green-soft); }

.value-statement {
  padding: clamp(110px, 14vw, 210px) 24px;
  text-align: center;
}

.value-statement h2 {
  width: min(1040px, 100%);
  margin: 0 auto;
  font-size: clamp(48px, 7vw, 96px);
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.value-chips span {
  border: 2px solid var(--play-ink);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 4px 5px 0 rgba(23, 23, 23, 0.1);
  font-weight: 700;
}

.value-chips span:nth-child(1) { background: var(--play-blue-soft); transform: rotate(-2deg); }
.value-chips span:nth-child(2) { background: var(--play-green-soft); transform: rotate(1deg); }
.value-chips span:nth-child(3) { background: var(--play-yellow-soft); transform: rotate(-1deg); }
.value-chips span:nth-child(4) { background: var(--play-red-soft); transform: rotate(2deg); }
.value-chips span:nth-child(5) { background: var(--play-orange-soft); transform: rotate(-1deg); }

.difference {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  gap: 90px;
  padding-top: 30px;
}

.difference .section-intro { position: sticky; top: 130px; }

.difference-list {
  border-top: 2px solid var(--play-ink);
}

.difference-list article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--play-line);
  transition: padding 220ms ease;
}

.difference-list article:hover { padding-left: 12px; }
.difference-list article > span { display: grid; width: 50px; height: 50px; place-items: center; border: 2px solid var(--play-ink); border-radius: 50%; background: var(--play-blue-soft); font-weight: 900; }
.difference-list article:nth-child(2) > span { background: var(--play-green-soft); }
.difference-list article:nth-child(3) > span { background: var(--play-yellow-soft); }
.difference-list article:nth-child(4) > span { background: var(--play-red-soft); }
.difference-list article:nth-child(5) > span { background: var(--play-orange-soft); }
.difference-list h3 { font-size: 25px; }
.difference-list p { margin-top: 8px; }

.builder-section {
  padding-top: clamp(90px, 10vw, 130px);
}

.builder-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
  width: min(var(--play-max), 100%);
  margin: 0 auto;
}

.builder-section__copy blockquote {
  margin: 32px 0 0;
  border-left: 5px solid var(--play-blue);
  padding-left: 22px;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}

.builder-art {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--play-ink);
  border-radius: 36px;
  background: #fff;
  box-shadow: 12px 14px 0 rgba(23, 23, 23, 0.11);
  transform: rotate(1.5deg);
  aspect-ratio: 3 / 2;
}

.builder-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }

.judgment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(var(--play-max), 100%);
  margin: 80px auto 0;
}

.judgment-grid article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--play-ink);
  border-radius: 24px;
  background: #fff;
  padding: 20px;
  box-shadow: 5px 6px 0 rgba(23, 23, 23, 0.09);
}

.judgment-grid article:nth-child(1) { border-top: 8px solid var(--play-blue); }
.judgment-grid article:nth-child(2) { border-top: 8px solid var(--play-green); }
.judgment-grid article:nth-child(3) { border-top: 8px solid var(--play-yellow); }
.judgment-grid article:nth-child(4) { border-top: 8px solid var(--play-orange); }
.judgment-grid article:nth-child(5) { border-top: 8px solid var(--play-red); }
.judgment-grid span { color: var(--play-muted); font-size: 13px; }
.judgment-grid strong { font-family: "Nunito Sans", sans-serif; font-size: 20px; line-height: 1.15; }

.comparison-section .section-intro { width: min(900px, 100%); }

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.comparison-card {
  border: 2px solid var(--play-ink);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 8px 9px 0 rgba(23, 23, 23, 0.1);
}

.comparison-card--tool { background: var(--play-warm); }
.comparison-card--hatch { background: var(--play-yellow-soft); transform: rotate(1deg); }
.comparison-card h3 { font-size: clamp(29px, 3vw, 42px); }
.comparison-card ul { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.comparison-card li { position: relative; padding-left: 28px; color: #4e4a46; }
.comparison-card li::before { position: absolute; left: 0; color: var(--play-green); font-weight: 900; content: "✓"; }
.comparison-card--tool li::before { color: #99948d; content: "→"; }
.comparison-card__note { display: block; border-top: 1px solid rgba(23, 23, 23, 0.16); padding-top: 20px; font-size: 13px; font-weight: 700; }

.workshop-line {
  width: min(900px, 100%);
  margin: 68px auto 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.2;
  text-align: center;
}

.option-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(var(--play-max), 100%);
  margin: 100px auto 0;
  overflow: hidden;
  border: 2px solid var(--play-ink);
  border-radius: 26px;
}

.option-strip > span {
  min-height: 125px;
  border-right: 1px solid var(--play-line);
  padding: 22px;
  color: var(--play-muted);
  font-size: 13px;
}

.option-strip > span:last-child { border-right: 0; }
.option-strip small { display: block; margin-bottom: 12px; color: var(--play-ink); font-family: "Nunito Sans", sans-serif; font-size: 15px; font-weight: 900; }
.option-strip .is-hatch { background: var(--play-blue-text); color: #fff; }
.option-strip .is-hatch small { color: #fff; }

.process-section {
  padding: clamp(96px, 10vw, 140px) max(24px, calc((100vw - var(--play-max)) / 2));
  overflow: hidden;
}

.process-art {
  width: min(1180px, 100%);
  aspect-ratio: 1180 / 340;
  margin: -20px auto 0;
  overflow: hidden;
  border-radius: 34px;
}

.process-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(var(--play-max), 100%);
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.week {
  min-height: 340px;
  border: 2px solid var(--play-ink);
  border-radius: 27px;
  padding: 25px;
  box-shadow: 6px 7px 0 rgba(23, 23, 23, 0.1);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1.4);
}

.week:hover { transform: translateY(-8px) rotate(-1deg); }
.week--blue { background: var(--play-blue-soft); }
.week--yellow { background: var(--play-yellow-soft); }
.week--green { background: var(--play-green-soft); }
.week--red { background: var(--play-red-soft); }
.week > span { display: inline-block; margin-bottom: 42px; border: 2px solid var(--play-ink); border-radius: 999px; background: #fff; padding: 5px 10px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.week h3 { font-size: 37px; }
.week small { display: block; margin-top: 20px; border-top: 1px solid rgba(23, 23, 23, 0.15); padding-top: 16px; font-weight: 700; }

.day-thirty {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 18px;
  width: min(850px, 100%);
  margin: 62px auto 0;
  border: 2px solid var(--play-ink);
  border-radius: 999px;
  background: #fff;
  padding: 18px 28px;
  box-shadow: 7px 8px 0 rgba(23, 23, 23, 0.1);
}

.day-thirty span { color: var(--play-blue-text); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.day-thirty strong { font-family: "Nunito Sans", sans-serif; font-size: 30px; font-weight: 900; }
.day-thirty p { margin: 0; color: var(--play-muted); text-align: right; }

.orbit-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.orbit-copy h2 { font-size: clamp(46px, 5.5vw, 75px); }
.orbit-copy > p { font-size: 17px; }

.orbit-stats {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  border-top: 1px solid var(--play-line);
  padding-top: 25px;
}

.orbit-stats span { color: var(--play-muted); font-size: 12px; }
.orbit-stats strong { display: block; color: var(--play-ink); font-family: "Nunito Sans", sans-serif; font-size: 31px; line-height: 1.1; }
.orbit-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }

.orbit-window {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--play-ink);
  border-radius: 30px;
  background: #fff;
  box-shadow: 14px 16px 0 rgba(23, 23, 23, 0.11);
  transform: rotate(1deg);
}

.orbit-window__top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 51px;
  padding: 0 15px;
  border-bottom: 3px solid var(--play-ink);
  background: var(--play-blue);
}

.orbit-window__top span { width: 11px; height: 11px; border: 2px solid var(--play-ink); border-radius: 50%; background: #fff; }
.orbit-window__top b { margin-left: auto; font-size: 12px; }
.orbit-window img { width: 100%; }
.orbit-window figcaption { display: flex; justify-content: space-between; padding: 18px 20px; }
.orbit-window figcaption span { font-weight: 800; }
.orbit-window figcaption small { color: var(--play-muted); }

.ownership-section {
  position: relative;
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  gap: 70px;
  margin: 0 16px;
  overflow: hidden;
  border-radius: 46px;
  background: var(--play-yellow);
  padding: clamp(78px, 9vw, 120px) max(28px, calc((100vw - 1160px) / 2));
}

.ownership-egg {
  display: grid;
  width: 245px;
  height: 285px;
  place-items: center;
  border: 4px solid var(--play-ink);
  border-radius: 52% 48% 46% 54% / 60% 59% 41% 40%;
  background: #fff;
  box-shadow: 13px 15px 0 rgba(23, 23, 23, 0.13);
  transform: rotate(-5deg);
}

.ownership-egg span { font-family: "Nunito Sans", sans-serif; font-size: 45px; font-weight: 900; letter-spacing: -0.06em; transform: rotate(5deg); }
.ownership-copy { max-width: 750px; }
.ownership-copy .eyebrow-play { color: #185fae; }
.ownership-copy > p { color: #3f3b34; }

.ownership-items {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 10px;
}

.ownership-items span { border: 2px solid var(--play-ink); border-radius: 999px; background: #fff; padding: 8px 14px; font-size: 13px; font-weight: 800; }

.pricing-section .section-intro { width: min(800px, 100%); }

.quote-shell-play {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--play-ink);
  border-radius: 34px;
  box-shadow: 12px 14px 0 rgba(23, 23, 23, 0.1);
}

.quote-form-play {
  display: grid;
  gap: 27px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--play-warm);
}

.field-play { display: grid; gap: 9px; }
.field-play label,
.feature-fieldset-play legend { font-family: "Nunito Sans", sans-serif; font-size: 15px; font-weight: 900; }
.field-play textarea,
.field-play input,
.field-play select {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--play-ink);
  border-radius: 15px;
  outline: 0;
  background: #fff;
  padding: 13px 15px;
  color: var(--play-ink);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.field-play textarea { min-height: 125px; resize: vertical; }
.field-play textarea:focus,
.field-play input:focus,
.field-play select:focus { box-shadow: 4px 5px 0 var(--play-blue); transform: translateY(-1px); }
.field-row-play { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.money-input-play { position: relative; }
.money-input-play > span { position: absolute; z-index: 1; top: 13px; left: 14px; font-weight: 800; }
.money-input-play input { padding-left: 31px; }
.feature-fieldset-play { margin: 0; border: 0; padding: 0; }
.feature-fieldset-play legend { margin-bottom: 11px; }
.feature-options-play { display: flex; flex-wrap: wrap; gap: 8px; }

.feature-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 43px;
  border: 2px solid var(--play-ink);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  color: var(--play-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease;
}

.feature-option:hover { transform: translateY(-2px); }
.feature-option.is-selected { background: var(--play-blue-soft); box-shadow: 3px 3px 0 rgba(23, 23, 23, 0.09); }
.feature-option span { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: var(--play-ink); color: #fff; font-size: 11px; }
.quote-submit { justify-self: start; }

.quote-result-play {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  background: var(--play-blue-text);
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
}

.quote-result-play .card-label { color: #fff; }
.estimate-placeholder,
.estimate-number { margin: 0; font-family: "Nunito Sans", sans-serif; font-size: clamp(36px, 4.2vw, 58px); font-weight: 900; line-height: 1.03; letter-spacing: -0.05em; }
.estimate-copy { margin-top: 20px; color: rgba(255, 255, 255, 0.83); }
.value-card-play { display: grid; gap: 3px; margin: 34px 0; border: 2px solid var(--play-ink); border-radius: 22px; background: var(--play-yellow); padding: 21px; box-shadow: 6px 7px 0 rgba(23, 23, 23, 0.15); color: var(--play-ink); }
.value-card-play span { font-size: 12px; font-weight: 800; text-transform: uppercase; }
.value-card-play strong { font-family: "Nunito Sans", sans-serif; font-size: 38px; line-height: 1.1; }
.value-card-play small { color: #595145; }
.quote-next-play { min-height: 54px; border: 2px solid var(--play-ink); border-radius: 999px; background: #fff; color: var(--play-ink); cursor: pointer; font-weight: 800; transition: transform 220ms ease; }
.quote-next-play:hover { transform: translateY(-3px); }

.guarantee-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 90px;
}

.guarantee-seal {
  position: relative;
  display: grid;
  width: 270px;
  height: 270px;
  align-content: center;
  justify-items: center;
  border: 4px solid var(--play-ink);
  border-radius: 50%;
  background: var(--play-red);
  box-shadow: 13px 15px 0 rgba(23, 23, 23, 0.12);
  color: #fff;
  transform: rotate(-7deg);
}

.guarantee-seal::before { position: absolute; inset: 12px; border: 2px dashed #fff; border-radius: 50%; content: ""; }
.guarantee-seal span { font-family: "Nunito Sans", sans-serif; font-size: 98px; font-weight: 900; line-height: 0.75; letter-spacing: -0.08em; }
.guarantee-seal small { font-family: "Nunito Sans", sans-serif; font-size: 26px; font-weight: 900; text-transform: uppercase; }
.guarantee-seal i { position: absolute; right: 12px; bottom: 16px; display: grid; width: 60px; height: 60px; place-items: center; border: 3px solid var(--play-ink); border-radius: 50%; background: var(--play-yellow); color: var(--play-ink); font-size: 29px; font-style: normal; }
.guarantee-copy { max-width: 800px; }
.guarantee-copy > strong { display: block; margin-top: 28px; font-family: "Nunito Sans", sans-serif; font-size: clamp(21px, 2vw, 29px); line-height: 1.25; }

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faq-intro { position: sticky; top: 130px; }
.faq-list-play { border-top: 2px solid var(--play-ink); }
.faq-list-play details { border-bottom: 1px solid var(--play-line); }
.faq-list-play summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; font-family: "Nunito Sans", sans-serif; font-size: clamp(20px, 2vw, 27px); font-weight: 900; line-height: 1.2; list-style: none; }
.faq-list-play summary::-webkit-details-marker { display: none; }
.faq-list-play summary b { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 2px solid var(--play-ink); border-radius: 50%; background: var(--play-blue-soft); font-size: 19px; transition: transform 220ms ease; }
.faq-list-play details[open] summary b { transform: rotate(45deg); background: var(--play-yellow); }
.faq-list-play details p { max-width: 720px; margin: -7px 0 28px; color: var(--play-muted); font-size: 17px; line-height: 1.7; }

.final-cta-play {
  position: relative;
  margin: 0 16px 16px;
  overflow: hidden;
  border-radius: 46px;
  background: var(--play-ink);
  padding: clamp(100px, 13vw, 175px) 24px;
  color: #fff;
  text-align: center;
}

.final-cta-play .eyebrow-play { color: #76b9ff; }
.final-cta-play h2 { font-size: clamp(52px, 7.8vw, 108px); }
.final-cta-play h2 span { color: #a9a6a1; }
.final-cta-play > p:nth-of-type(2) { width: min(620px, 100%); margin: 28px auto 0; color: #c9c6c1; font-size: 20px; }
.final-cta-play__actions { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 34px; }
.final-cta-play__actions a { color: #fff; font-weight: 700; text-decoration: none; }
.final-cta-play__actions a:hover { text-decoration: underline; }
.final-cta-play > small { display: block; margin-top: 30px; color: #aaa7a3; }
.final-positioning { display: block; width: min(860px, 100%); margin: 80px auto 0; border-top: 1px solid #494949; padding-top: 30px; color: #eee; font-family: "Nunito Sans", sans-serif; font-size: clamp(19px, 2.1vw, 28px); line-height: 1.25; }

.final-confetti i { position: absolute; width: 17px; height: 17px; border-radius: 4px; background: var(--play-blue); animation: float-confetti 6s ease-in-out infinite; }
.final-confetti i:nth-child(1) { top: 12%; left: 8%; transform: rotate(14deg); }
.final-confetti i:nth-child(2) { top: 27%; right: 10%; border-radius: 50%; background: var(--play-yellow); animation-delay: -1s; }
.final-confetti i:nth-child(3) { bottom: 23%; left: 14%; background: var(--play-red); animation-delay: -2s; }
.final-confetti i:nth-child(4) { right: 18%; bottom: 12%; background: var(--play-green); animation-delay: -3s; }
.final-confetti i:nth-child(5) { top: 10%; right: 37%; background: var(--play-orange); animation-delay: -4s; }
.final-confetti i:nth-child(6) { bottom: 10%; left: 39%; border-radius: 50%; background: var(--play-blue); animation-delay: -5s; }

.play-footer {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 50px;
  padding: 80px max(24px, calc((100vw - var(--play-max)) / 2)) 30px;
}

.play-logo--footer { font-size: 29px; }
.play-footer__brand p { color: var(--play-muted); }
.play-footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.play-footer__links p { margin: 0 0 12px; color: var(--play-muted); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.play-footer__links a,
.play-footer__links button { border: 0; background: none; padding: 0; color: var(--play-ink); cursor: pointer; text-decoration: none; }
.play-footer__links a:hover,
.play-footer__links button:hover { color: #156ecf; }
.play-footer__bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; margin-top: 40px; border-top: 1px solid var(--play-line); padding-top: 22px; color: var(--play-muted); font-size: 12px; }

/* Bring the existing lead flow into the new Hatch system without changing its API contract. */
.home-page .tf {
  background: var(--play-warm);
  color: var(--play-ink);
  font-family: "DM Sans", sans-serif;
}

.home-page .tf__progress { background: #dedbd5; }
.home-page .tf__progress-fill { background: var(--play-blue); }
.home-page .tf__close { border: 2px solid var(--play-ink); background: #fff; box-shadow: 3px 4px 0 rgba(23, 23, 23, 0.1); }
.home-page .tf__count { left: 24px; }
.home-page .tf__step { padding-right: 24px; padding-left: 24px; }
.home-page .tf__num { color: #1774df; }
.home-page .tf__title,
.home-page .tf__q { font-family: "Nunito Sans", sans-serif; font-weight: 900; letter-spacing: -0.04em; }
.home-page .tf .eyebrow { color: #1774df; font-family: "DM Sans", sans-serif; font-weight: 800; }
.home-page .tf .eyebrow::before { background: var(--play-blue); }
.home-page .tf .mark {
  background: none;
  color: var(--play-blue);
  -webkit-text-fill-color: currentColor;
  font-weight: 900;
}
.home-page .tf__input { border-bottom-color: var(--play-ink); font-family: "DM Sans", sans-serif; }
.home-page .tf__input:focus { border-color: var(--play-blue); }
.home-page .tf__choice { border: 2px solid var(--play-ink); border-radius: 18px; background: #fff; box-shadow: 4px 5px 0 rgba(23, 23, 23, 0.08); font-family: "DM Sans", sans-serif; }
.home-page .tf__choice:hover,
.home-page .tf__choice.is-focus { border-color: var(--play-blue); }
.home-page .tf__choice.is-selected { border-color: var(--play-ink); background: var(--play-blue-soft); }
.home-page .tf__choice-key { border: 2px solid var(--play-ink); }
.home-page .tf__choice:hover .tf__choice-key,
.home-page .tf__choice.is-focus .tf__choice-key,
.home-page .tf__choice.is-selected .tf__choice-key { border-color: var(--play-blue); color: #1774df; }
.home-page .tf .btn-primary {
  border: 2px solid var(--play-ink);
  background: var(--play-ink);
  box-shadow: 5px 6px 0 rgba(23, 23, 23, 0.13);
  color: #fff;
  font-family: "DM Sans", sans-serif;
}
.home-page .tf .btn-primary::after { display: none; }
.home-page .tf .btn-primary:hover { box-shadow: 7px 8px 0 rgba(23, 23, 23, 0.12); }
.home-page .tf .btn:focus-visible,
.home-page .tf__close:focus-visible { outline: 3px solid var(--play-blue); outline-offset: 3px; }

html.js .reveal,
html.js .reveal-group > * {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 650ms ease, transform 800ms cubic-bezier(0.18, 0.82, 0.22, 1.15);
}

html.js .reveal-group > *:nth-child(2) { transition-delay: 80ms; }
html.js .reveal-group > *:nth-child(3) { transition-delay: 150ms; }
html.js .reveal-group > *:nth-child(4) { transition-delay: 220ms; }
html.js .reveal-group > *:nth-child(5) { transition-delay: 290ms; }
html.js .reveal-group > *:nth-child(6) { transition-delay: 360ms; }

html.js .reveal.is-visible,
html.js .reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float-confetti {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -12px; rotate: 14deg; }
}

@media (max-width: 1100px) {
  .play-header { grid-template-columns: auto 1fr auto; }
  .play-nav { display: none; position: absolute; top: 76px; right: 0; left: 0; flex-direction: column; align-items: center; gap: 0; overflow: hidden; border: 1px solid var(--play-line); border-radius: 28px; background: #fff; padding: 10px; box-shadow: var(--play-shadow); }
  .play-header.is-menu-open .play-nav { display: flex; }
  .play-nav a { width: 100%; padding: 14px; text-align: center; }
  .play-nav a::after { display: none; }
  .play-header > .pill-button { justify-self: end; margin-right: 8px; }
  .menu-button { display: block; }
  .play-header.is-menu-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .play-header.is-menu-open .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .transformation,
  .difference,
  .faq-section { grid-template-columns: 1fr; gap: 30px; }
  .transformation .section-intro,
  .difference .section-intro,
  .faq-intro { position: static; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .mess-map { grid-template-columns: repeat(3, 1fr); }
  .mess-arrow { grid-column: 1 / -1; transform: rotate(90deg); }
  .mess-card--hatch { grid-column: 2; }
  .build-card { grid-column: span 3; }
  .build-card--large { grid-column: span 6; }
  .judgment-grid { grid-template-columns: repeat(3, 1fr); }
  .option-strip { grid-template-columns: repeat(3, 1fr); }
  .option-strip > span:nth-child(3) { border-right: 0; }
  .option-strip > span:nth-child(-n+3) { border-bottom: 1px solid var(--play-line); }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .orbit-section { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 90px; }
  .play-header { top: 10px; width: calc(100% - 20px); min-height: 60px; padding-left: 13px; }
  .play-logo { font-size: 21px; }
  .play-logo__egg { width: 34px; height: 34px; }
  .play-header > .pill-button { display: none; }
  .play-header { grid-template-columns: auto 1fr auto; }
  .menu-button { grid-column: 3; justify-self: end; }

  .section-pad,
  .warm-band { padding: 86px 20px; }
  .warm-band { margin: 0 8px; border-radius: 32px; }

  .hero-play { display: flex; min-height: auto; flex-direction: column; padding: 116px 18px 48px; }
  .hero-play__copy { width: 100%; margin: 0; padding: 28px 0 0; border-radius: 0; background: #fff; }
  .hero-play__copy::before { display: none; }
  .hero-play h1 { font-size: clamp(46px, 13vw, 66px); }
  .hero-play__lede { font-size: 18px; }
  .hero-play__actions { flex-direction: column; gap: 16px; }
  .hero-play__art { position: relative; top: auto; left: auto; order: 2; width: 140%; max-width: none; height: auto; margin: 15px -20% -5px; transform: none; object-fit: contain; }
  .hero-badges { position: relative; right: auto; bottom: auto; left: auto; order: 3; margin-top: -20px; }
  .hero-play::before,
  .hero-play::after { display: none; }

  .section-intro { margin-bottom: 38px; }
  .section-intro h2,
  .builder-section h2,
  .orbit-copy h2,
  .ownership-copy h2,
  .guarantee-copy h2,
  .faq-intro h2,
  .value-statement h2,
  .final-cta-play h2 { font-size: clamp(39px, 11vw, 56px); }

  .mess-map { grid-template-columns: 1fr; gap: 14px; }
  .mess-card { min-height: 160px; }
  .mess-card--sheet,
  .mess-card--brain { transform: none; }
  .mess-card--hatch { grid-column: auto; }
  .mess-arrow { grid-column: auto; }
  .problem-close { margin-top: 45px; }

  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 260px; }
  .outcome-card:nth-child(even) { margin-top: 0; }
  .outcome-icon { margin-bottom: 34px; }

  .build-grid { grid-template-columns: 1fr; }
  .build-card,
  .build-card--large,
  .build-card--mobile,
  .build-card--reporting { grid-column: auto; min-height: 390px; }
  .build-card--large { flex-direction: column; align-items: flex-start; }
  .mini-ui { width: 100%; margin-top: 35px; }

  .screen-grid { grid-template-columns: 1fr; }
  .screen-card:nth-child(2) { transform: none; }
  .screen-card:nth-child(2):hover { transform: translateY(-7px); }
  .phone-story { grid-template-columns: 1fr; gap: 40px; margin-top: 100px; }
  .phone-trio { min-height: 460px; gap: 6px; }
  .phone { width: 30vw; max-width: 155px; border-width: 6px; border-radius: 29px; }
  .phone-screen { height: 330px; border-radius: 21px; }
  .phone-chip { font-size: 10px; }

  .value-statement { padding: 100px 20px; }
  .value-statement h2 { font-size: clamp(43px, 12vw, 65px); }
  .difference { padding-top: 20px; }

  .builder-section__grid { grid-template-columns: 1fr; gap: 35px; }
  .judgment-grid { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .judgment-grid article { min-height: 170px; }
  .judgment-grid article:last-child { grid-column: 1 / -1; }

  .comparison-cards { grid-template-columns: 1fr; }
  .comparison-card--hatch { transform: none; }
  .option-strip { grid-template-columns: 1fr; margin-top: 70px; }
  .option-strip > span { min-height: auto; border-right: 0; border-bottom: 1px solid var(--play-line); }
  .option-strip > span:last-child { border-bottom: 0; }

  .process-art { margin: 0 auto; width: 100%; aspect-ratio: 16 / 7; }
  .week-grid { grid-template-columns: 1fr; }
  .week { min-height: 300px; }
  .day-thirty { grid-template-columns: 1fr; justify-items: center; border-radius: 30px; text-align: center; }
  .day-thirty p { text-align: center; }

  .orbit-stats { flex-wrap: wrap; }
  .orbit-actions { align-items: flex-start; flex-direction: column; }
  .orbit-window figcaption { gap: 8px; flex-direction: column; }

  .ownership-section { grid-template-columns: 1fr; gap: 45px; margin: 0 8px; border-radius: 32px; padding: 80px 24px; }
  .ownership-egg { width: 180px; height: 210px; justify-self: center; }
  .ownership-egg span { font-size: 36px; }
  .ownership-items { grid-column: auto; justify-content: center; }

  .quote-shell-play { grid-template-columns: 1fr; }
  .field-row-play { grid-template-columns: 1fr; }
  .quote-result-play { min-height: 480px; }
  .guarantee-section { grid-template-columns: 1fr; gap: 50px; }
  .guarantee-seal { width: 210px; height: 210px; justify-self: center; }
  .guarantee-seal span { font-size: 75px; }

  .final-cta-play { margin: 0 8px 8px; border-radius: 32px; padding-right: 18px; padding-left: 18px; }
  .final-cta-play__actions { flex-direction: column; }
  .final-positioning { margin-top: 60px; }

  .play-footer { grid-template-columns: 1fr 1fr; gap: 40px 25px; padding: 65px 24px 25px; }
  .play-footer__brand { grid-column: 1 / -1; }
  .play-footer__bottom { gap: 8px; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-play h1 { font-size: 46px; }
  .hero-badges { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-badges span { justify-content: center; }
  .section-intro h2,
  .builder-section h2,
  .orbit-copy h2,
  .ownership-copy h2,
  .guarantee-copy h2,
  .faq-intro h2,
  .value-statement h2,
  .final-cta-play h2 { font-size: 39px; }
  .phone-trio { min-height: 390px; }
  .phone-screen { height: 280px; }
  .phone-chip { bottom: -39px; padding: 5px 8px; }
  .judgment-grid { grid-template-columns: 1fr; }
  .judgment-grid article:last-child { grid-column: auto; }
  .play-footer { grid-template-columns: 1fr; }
  .play-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  html.js .reveal,
  html.js .reveal-group > * { opacity: 1; transform: none; }
}
