* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #24150c; }
img { max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

.gameNav {
  position: fixed;
  left: 50%;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 238, 199, 0.20);
  border-radius: 999px;
  background: rgba(41, 24, 12, 0.72);
  box-shadow: 0 18px 34px rgba(23, 11, 4, 0.20);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.gameLogo {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #fff8df;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.gameNav nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gameNav nav a,
.gameNavCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 245, 220, 0.86);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.gameNav nav a:hover {
  background: rgba(255, 248, 222, 0.12);
  color: #fff8df;
}

.gameNavCta {
  background: #ffdc5f;
  color: #4a280d;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.34);
}

.page {
  min-height: 100vh;
  background: #24150c;
  color: #fff5dc;
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.heroArt {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.heroShade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(35, 21, 10, 0.88) 0%, rgba(35, 21, 10, 0.68) 33%, rgba(35, 21, 10, 0.18) 68%, rgba(35, 21, 10, 0.06) 100%),
    linear-gradient(180deg, rgba(35, 21, 10, 0.10) 0%, rgba(35, 21, 10, 0.46) 100%);
}

.heroInner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  padding: 70px 0;
}

.heroCopy {
  display: grid;
  justify-items: start;
  gap: 16px;
  max-width: 640px;
}

.eyebrow,
.kicker {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.92);
  color: #6a3d19;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.sectionHead h2,
.recoveryCopy h2,
.finalCta h2 {
  margin: 0;
  color: #fff8df;
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 116px);
  text-shadow: 0 10px 26px rgba(46, 23, 7, 0.34);
}

.heroLead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 248, 225, 0.96);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 930;
  line-height: 1.05;
  text-shadow: 0 6px 22px rgba(46, 23, 7, 0.32);
  text-wrap: balance;
}

.heroText,
.heroHint {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 242, 214, 0.86);
  font-size: 19px;
  font-weight: 760;
  line-height: 1.36;
  text-shadow: 0 6px 18px rgba(46, 23, 7, 0.28);
}

.heroHint {
  max-width: 520px;
  font-size: 14px;
  color: rgba(255, 242, 214, 0.74);
}

.heroActions,
.finalActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primaryCta,
.secondaryCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.primaryCta {
  background: linear-gradient(180deg, #ffdc5f 0%, #f0a52d 100%);
  color: #4a280d;
  box-shadow:
    0 5px 0 #8c4d17,
    0 18px 34px rgba(81, 37, 10, 0.24),
    inset 0 2px 0 rgba(255, 255, 255, 0.36);
}

.secondaryCta {
  background: rgba(255, 248, 222, 0.16);
  border: 1px solid rgba(255, 248, 222, 0.34);
  color: #fff5dc;
  backdrop-filter: blur(10px);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chips span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.88);
  color: #553116;
  font-size: 14px;
  font-weight: 930;
  box-shadow: 0 8px 18px rgba(55, 24, 8, 0.14);
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(610px, 100%);
  margin-top: 2px;
}

.heroStats span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 248, 222, 0.13);
  border: 1px solid rgba(255, 238, 199, 0.20);
  color: rgba(255, 242, 214, 0.78);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.15;
  backdrop-filter: blur(10px);
}

.heroStats strong {
  color: #ffdc5f;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.heroMiniPanel {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.12);
  border: 1px solid rgba(255, 238, 199, 0.18);
  backdrop-filter: blur(10px);
}

.heroMiniPanel span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.88);
  color: #553116;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}


.heroGamePeek {
  display: none;
}

.phone {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 390 / 844;
  padding: 30px 14px 14px;
  border-radius: 48px;
  background: linear-gradient(135deg, #2a2927 0%, #090807 45%, #3a3732 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 24px 58px rgba(0, 0, 0, 0.42);
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 2;
  width: 100px;
  height: 20px;
  border-radius: 0 0 16px 16px;
  background: #080706;
  transform: translateX(-50%);
}

.phoneViewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #fff0d4;
}

.phoneScreen {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #fff0d4;
}

.showcaseSection,
.loopSection,
.recoverySection,
.finalCta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.showcaseSection,
.loopSection {
  padding: 74px 0 0;
}

.sectionHead {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 auto 28px;
  text-align: center;
}

.sectionHead h2,
.recoveryCopy h2,
.finalCta h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.6vw, 64px);
}


.showcaseToggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.12);
  border: 1px solid rgba(255, 238, 199, 0.20);
}

.showcaseToggle button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: rgba(255, 245, 220, 0.80);
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.showcaseToggle button.isActive {
  background: #ffdc5f;
  color: #4a280d;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.34), 0 8px 18px rgba(33, 14, 4, 0.20);
}

.showcasePanel[hidden] {
  display: none;
}

.showcasePanel.isActive {
  animation: showcaseIn 180ms ease-out;
}

@keyframes showcaseIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.screenRail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenCard {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 14px 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 238, 199, 0.14) 0%, rgba(255, 238, 199, 0.06) 100%);
  border: 1px solid rgba(255, 238, 199, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.screenCard:nth-child(1) {
  transform: rotate(-2deg);
}

.screenCard:nth-child(2) {
  margin-top: 26px;
}

.screenCard:nth-child(3) {
  transform: rotate(2deg);
}

.screenCard .phone {
  width: min(260px, 72vw);
}

.screenCard div {
  display: grid;
  gap: 5px;
  text-align: center;
}

.screenCard strong,
.sortieCard strong,
.loopCard strong {
  color: #fff8df;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.screenCard span,
.sortieCard p,
.loopCard p,
.recoveryCopy p {
  margin: 0;
  color: rgba(255, 242, 214, 0.82);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.32;
}

.loopGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.loopCard {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
  border-radius: 26px;
  background: #3b2414;
  border: 1px solid rgba(255, 225, 170, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.loopCard span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff0d0;
  color: #5b3218;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 -3px 0 rgba(255, 185, 48, 0.24);
}

.sortieGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sortieCard {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 225, 170, 0.18);
  background: #3b2414;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.20);
}

.sortieCard img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  filter: saturate(1.04);
}

.sortieCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 14, 7, 0.04) 42%, rgba(24, 14, 7, 0.78) 100%);
}

.sortieCard div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.recoverySection {
  padding: 96px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.recoveryArt {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 225, 170, 0.16);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.recoveryArt > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.cropPotato,
.cropDill {
  position: absolute;
  width: 118px;
  height: auto;
  filter: drop-shadow(0 10px 12px rgba(32, 17, 6, 0.28));
}

.cropPotato {
  left: 12%;
  bottom: 9%;
}

.cropDill {
  right: 9%;
  bottom: 6%;
}

.recoveryCopy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.recoveryCopy p {
  max-width: 550px;
  font-size: 21px;
}

.finalCta {
  margin-top: 96px;
  margin-bottom: 48px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 102, 0.30), transparent 28%),
    linear-gradient(135deg, #6e421f 0%, #301b0f 100%);
  border: 1px solid rgba(255, 225, 170, 0.16);
  overflow: hidden;
}

.finalCta > img {
  width: 100%;
  height: auto;
  align-self: end;
  filter: drop-shadow(0 18px 18px rgba(16, 8, 3, 0.32));
}

.finalCta > div {
  display: grid;
  justify-items: start;
  gap: 18px;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    display: block;
    padding-top: 86px;
    overflow: visible;
    background: #24150c;
  }

  .heroInner {
    grid-template-columns: 1fr;
    min-height: 0;
    align-content: start;
    padding: 24px 0 0;
  }

  .heroShade {
    display: none;
  }

  .heroArt {
    position: relative;
    z-index: 0;
    display: block;
    width: min(100% - 28px, 720px);
    height: auto;
    aspect-ratio: 1672 / 941;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid rgba(255, 225, 170, 0.18);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 22px 48px rgba(16, 8, 3, 0.32);
  }

  .heroCopy {
    order: 1;
    justify-items: center;
    text-align: center;
  }

  .eyebrow {
    display: none;
  }

  .heroText,
  .heroHint {
    max-width: 560px;
  }

  .heroActions,
  .finalActions,
  .chips {
    justify-content: center;
  }

  .heroStats {
    grid-template-columns: 1fr;
    max-width: 330px;
    gap: 8px;
  }

  .heroStats span {
    min-height: 52px;
    padding: 10px 12px;
    text-align: center;
  }

  .screenRail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 8px 18px;
    scroll-snap-type: x mandatory;
  }

  .screenCard {
    width: min(310px, 82vw);
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .screenCard:nth-child(n) {
    margin-top: 0;
    transform: none;
  }

  .loopGrid,
  .sortieGrid,
  .recoverySection {
    grid-template-columns: 1fr;
  }

  .sortieCard {
    min-height: 320px;
  }

  .sortieCard img {
    min-height: 320px;
  }

  .recoveryCopy {
    justify-items: center;
    text-align: center;
  }

  .finalCta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .finalCta > img {
    max-width: 230px;
  }

  .finalCta > div {
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .gameNav,
  .heroInner,
  .showcaseSection,
  .loopSection,
  .recoverySection,
  .finalCta {
    width: min(100% - 28px, 1180px);
  }

  .gameNav {
    top: 10px;
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .gameNav nav {
    display: none;
  }

  .gameLogo {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .heroLead {
    font-size: 28px;
  }

  .heroText {
    font-size: 17px;
  }

  .heroHint {
    font-size: 13px;
  }

  .primaryCta,
  .secondaryCta {
    width: 100%;
    min-height: 54px;
  }

  .showcaseSection,
  .loopSection {
    padding-top: 68px;
  }

  .sectionHead h2,
  .recoveryCopy h2,
  .finalCta h2 {
    font-size: 38px;
  }

  .loopCard {
    min-height: 0;
  }

  .recoveryArt {
    min-height: 390px;
  }

  .recoveryArt > img:first-child {
    min-height: 390px;
  }

  .cropPotato,
  .cropDill {
    width: 88px;
  }

  .finalCta {
    margin-top: 68px;
    margin-bottom: 28px;
    padding: 28px 18px;
  }
}


@media (max-width: 920px) {
  .heroCopy {
    max-width: 620px;
    margin: 0 auto;
    padding: 22px 18px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 238, 199, 0.10), rgba(255, 238, 199, 0.04));
    border: 1px solid rgba(255, 225, 170, 0.14);
  }

  .secondaryCta {
    min-height: 44px;
    background: transparent;
    border-color: rgba(255, 238, 199, 0.18);
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .gameNav {
    min-height: 50px;
    padding: 7px 8px 7px 14px;
  }

  .gameNavCta {
    min-height: 36px;
    padding: 0 15px;
  }

  .hero {
    padding-top: 72px;
  }

  .heroArt {
    width: min(100% - 28px, 560px);
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(16, 8, 3, 0.26);
  }

  .heroInner {
    padding-top: 14px;
  }

  .heroCopy {
    gap: 13px;
    padding: 18px 14px 20px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .heroLead {
    font-size: 23px;
    line-height: 1.08;
  }

  .heroText {
    font-size: 15px;
    line-height: 1.34;
  }

  .heroActions {
    width: 100%;
    gap: 8px;
  }

  .primaryCta {
    min-height: 52px;
  }

  .secondaryCta {
    width: auto;
    min-height: 38px;
    padding: 0 8px;
    border: 0;
    color: rgba(255, 242, 214, 0.80);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .heroMiniPanel {
    justify-content: center;
    width: 100%;
    border-radius: 20px;
  }

  .heroMiniPanel span {
    min-height: 30px;
    font-size: 12px;
  }

  .heroHint {
    font-size: 12px;
    line-height: 1.3;
  }

  .showcaseSection {
    padding-top: 42px;
  }

  .sectionHead {
    margin-bottom: 18px;
    gap: 10px;
  }

  .sectionHead h2,
  .recoveryCopy h2,
  .finalCta h2 {
    font-size: 31px;
    line-height: 1.02;
  }

  .showcaseToggle {
    width: 100%;
    border-radius: 22px;
  }

  .showcaseToggle button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 13px;
  }

  .sortieGrid {
    gap: 12px;
  }

  .sortieCard {
    min-height: 380px;
    border-radius: 24px;
  }

  .sortieCard img {
    min-height: 380px;
  }

  .loopSection {
    padding-top: 46px;
  }

  .loopGrid {
    gap: 8px;
  }

  .loopCard {
    min-height: 0;
    grid-template-columns: 50px 1fr;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
  }

  .loopCard span {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 24px;
  }

  .loopCard p {
    font-size: 14px;
  }

  .recoverySection {
    padding-top: 50px;
    gap: 20px;
  }

  .finalCta {
    border-radius: 26px;
  }
}


@media (max-width: 920px) {
  .heroGamePeek {
    display: grid;
    grid-template-columns: 54px 54px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: min(360px, 100%);
    margin-top: 2px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 248, 222, 0.10);
    border: 1px solid rgba(255, 238, 199, 0.16);
  }

  .heroGamePeek img {
    width: 54px;
    height: 84px;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    background: #fff0d4;
    box-shadow: 0 10px 18px rgba(16, 8, 3, 0.20);
  }

  .heroGamePeek span {
    color: rgba(255, 242, 214, 0.84);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .heroGamePeek {
    grid-template-columns: 48px 48px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .heroGamePeek img {
    width: 48px;
    height: 74px;
    border-radius: 12px;
  }

  .heroGamePeek span {
    font-size: 12px;
  }

  .heroMiniPanel {
    max-width: 330px;
  }

  .heroMiniPanel span {
    flex: 1 1 0;
    justify-content: center;
  }
}


/* Mobile landing polish pass */
.recoveryCopy .kicker,
.finalCta .kicker,
.sectionHead .kicker {
  color: #6a3d19;
}

@media (max-width: 920px) {
  .hero {
    padding-top: 74px;
  }

  .heroArt {
    width: min(100% - 28px, 640px);
    height: clamp(190px, 34svh, 270px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .heroInner {
    padding-top: 10px;
  }

  .heroCopy {
    max-width: 640px;
    gap: 11px;
    padding: 0 6px 0;
    background: transparent;
    border: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 0.96;
  }

  .heroLead {
    max-width: 430px;
    font-size: clamp(20px, 5.4vw, 25px);
    line-height: 1.08;
  }

  .heroText {
    max-width: 440px;
    font-size: 14px;
    line-height: 1.32;
  }

  .heroActions {
    justify-content: center;
    width: min(360px, 100%);
    margin-top: 2px;
  }

  .heroActions .primaryCta {
    width: 100%;
    min-height: 50px;
  }

  .heroActions .secondaryCta {
    width: auto;
    min-height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 242, 214, 0.74);
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .heroMiniPanel {
    width: min(330px, 100%);
    padding: 6px;
    border-radius: 999px;
  }

  .heroMiniPanel span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
  }

  .heroGamePeek {
    display: none;
  }

  .heroHint {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.25;
  }

  .showcaseSection {
    padding-top: 34px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 68px;
  }

  .heroArt {
    width: min(100% - 24px, 560px);
    height: clamp(176px, 30svh, 235px);
    border-radius: 22px;
  }

  .heroCopy {
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 10.5vw, 52px);
  }

  .heroLead {
    font-size: 20px;
  }

  .heroText {
    font-size: 13px;
  }

  .heroActions .primaryCta {
    min-height: 48px;
  }

  .heroHint {
    display: none;
  }

  .showcaseSection {
    padding-top: 30px;
  }

  .sectionHead h2,
  .recoveryCopy h2,
  .finalCta h2 {
    font-size: 28px;
  }
}


/* Flow stitch pass: hero -> game -> cycle -> home -> CTA */
.sectionLead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 242, 214, 0.78);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.36;
}

.showcaseSection {
  position: relative;
  z-index: 2;
}

.loopSection {
  position: relative;
}

.loopGrid {
  position: relative;
}

.recoverySection,
.finalCta {
  position: relative;
}

@media (max-width: 920px) {
  .showcaseSection {
    padding-top: 28px;
  }

  .sectionLead {
    font-size: 15px;
    line-height: 1.34;
  }

  .loopSection {
    padding-top: 44px;
  }

  .loopGrid {
    max-width: 620px;
    margin: 0 auto;
    gap: 0;
  }

  .loopGrid::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 220, 95, 0.70), rgba(255, 238, 199, 0.12));
  }

  .loopCard {
    position: relative;
    grid-template-columns: 50px 1fr;
    align-items: center;
    min-height: 0;
    margin: 0 0 10px;
    padding: 14px 14px 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .loopCard span {
    position: relative;
    z-index: 1;
    grid-row: span 2;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 225, 170, 0.28);
    border-radius: 18px;
    background: #fff0d0;
    box-shadow: 0 10px 20px rgba(16, 8, 3, 0.20);
  }

  .loopCard strong {
    font-size: 20px;
  }

  .loopCard p {
    font-size: 14px;
  }

  .recoverySection {
    padding-top: 46px;
  }
}

@media (max-width: 560px) {
  .showcaseSection {
    padding-top: 24px;
  }

  .showcaseSection .sectionHead h2 {
    font-size: 27px;
  }

  .sectionLead {
    max-width: 330px;
    font-size: 14px;
  }

  .loopSection {
    padding-top: 40px;
  }

  .loopGrid {
    width: min(100%, 360px);
  }

  .loopCard {
    padding-right: 2px;
  }

  .loopCard strong {
    font-size: 18px;
  }

  .loopCard p {
    font-size: 13px;
    line-height: 1.3;
  }
}
