/* ---------------------------------------------------------------
   Popcorn Grove — site styles
   --------------------------------------------------------------- */

:root {
  --ink: #101928;
  --ink-soft: #4b5568;
  --cream: #faf6ec;
  --paper: #fffdf7;
  --moss: #3e6a46;
  --moss-deep: #2c4f35;
  --moss-soft: #6e9a68;
  --sun: #f6c75f;
  --butter: #fbe6b3;
  --coral: #eb8d6d;
  --lavender: #a89bd8;
  --mint: #85c4a0;
  --line: #e6e1d0;
  --wash: #eef2e2;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-card: 0 1px 2px rgba(16, 25, 40, .04), 0 12px 32px rgba(16, 25, 40, .07);
  --shadow-panel: 0 2px 4px rgba(16, 25, 40, .05), 0 24px 60px rgba(16, 25, 40, .10);
  --radius-panel: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sun); color: var(--ink); }

a { color: inherit; }
a:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 4px; }

img, svg { max-width: 100%; display: block; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  padding: .7rem 1rem; background: var(--ink); color: #fff;
  border-radius: .5rem; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Shared page container */
.header-inner, .footer-inner, .hero, .section, .contact-panel, .legal-page {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------------------------------------------------------------
   Header
   --------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 236, .85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 25, 40, .06);
}
.header-inner {
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink); text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 58px; height: 46px;
  object-fit: contain;
  border-radius: 7px;
  flex: 0 0 auto;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1;
  white-space: nowrap;
}

nav { display: flex; align-items: center; gap: 1.6rem; }
nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: .95rem; font-weight: 600;
  white-space: nowrap;
  transition: color .15s ease;
}
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  padding: .5rem 1.05rem;
  border: 2px solid var(--ink); border-radius: 999px;
  color: var(--ink); font-weight: 700;
  transition: background .15s ease, color .15s ease;
}
.nav-cta:hover { background: var(--ink); color: #fff; }
.menu-toggle {
  display: none;
  align-items: center; gap: .65rem;
  min-height: 44px; padding: .45rem .8rem;
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  font: 700 .86rem/1 var(--font-body);
  cursor: pointer;
}
.menu-icon { display: grid; gap: 5px; width: 16px; }
.menu-icon i {
  display: block; width: 16px; height: 2px;
  background: currentColor; border-radius: 999px;
  transition: transform .18s ease;
}
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------------------------------------------------------------
   Type
   --------------------------------------------------------------- */

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 570;
  line-height: 1.04;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.9rem, 6.4vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--moss); font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.lede {
  max-width: 34em; margin: 1.6rem 0 2.4rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.9vw, 1.3rem); line-height: 1.55;
}
.launch-note {
  display: flex; align-items: center; gap: .6rem;
  margin: -1rem 0 2rem;
  color: var(--moss-deep); font-size: .88rem; font-weight: 700;
}
.launch-note span {
  width: .58rem; height: .58rem; border-radius: 50%;
  background: var(--moss-soft);
  box-shadow: 0 0 0 5px rgba(110, 154, 104, .14);
}

/* ---------------------------------------------------------------
   Buttons
   --------------------------------------------------------------- */

.button {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .9rem 1.35rem;
  background: var(--ink); color: #fff;
  border: 2px solid var(--ink); border-radius: 999px;
  font-size: .97rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 7px 0 rgba(16, 25, 40, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 0 rgba(16, 25, 40, .17); }
.button:active { transform: translateY(2px); box-shadow: 0 3px 0 rgba(16, 25, 40, .2); }
.button .arrow { transition: transform .18s ease; }
.button:hover .arrow { transform: translateY(2px); }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); box-shadow: 0 7px 0 rgba(0, 0, 0, .18); }
.button-light:hover { box-shadow: 0 9px 0 rgba(0, 0, 0, .22); }

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */

.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 6vh, 4.5rem) 0 clamp(4rem, 8vh, 6rem);
}
.hero-teaser {
  position: relative;
  min-height: 330px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  background:
    radial-gradient(circle at 90% 8%, rgba(246, 199, 95, .22), transparent 42%),
    linear-gradient(145deg, #0b2025, #132a30);
  color: #fff;
}
.hero-teaser > *:not(.teaser-blocks) { position: relative; z-index: 1; }
.hero-teaser .eyebrow { color: var(--butter); margin-bottom: .7rem; }
.hero-teaser h2 { font-size: clamp(2.25rem, 4vw, 3.3rem); }
.hero-teaser > p:not(.eyebrow) {
  max-width: 28em; margin: .9rem 0 0;
  color: #dceadf; font-size: 1rem;
}
.hero-teaser .status { margin: 1.25rem 0 0; background: rgba(255, 255, 255, .92); }
.teaser-blocks {
  position: absolute; right: 2rem; top: 2rem;
  display: grid; grid-template-columns: repeat(2, 58px); gap: 10px;
  transform: rotate(3deg);
}
.teaser-blocks i {
  width: 58px; height: 58px; border-radius: 13px;
  background: linear-gradient(145deg, #c48638, #8b5426);
  border: 2px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 8px 14px rgba(255, 214, 125, .18), 0 8px 16px rgba(0, 0, 0, .24);
}
.teaser-blocks i:last-child {
  background: linear-gradient(145deg, #ffe56c, #eca526);
  box-shadow: 0 0 28px rgba(246, 199, 95, .5), inset 0 8px 14px rgba(255, 255, 255, .28);
}

/* ---------------------------------------------------------------
   Sections
   --------------------------------------------------------------- */

.section { padding: clamp(4.5rem, 9vh, 6.5rem) 0; border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.section-heading { max-width: 700px; }
.section-heading > p:not(.eyebrow) {
  max-width: 36em; margin-bottom: 0;
  color: var(--ink-soft); font-size: 1.13rem;
}

/* ---------------------------------------------------------------
   Blockfall showcase
   --------------------------------------------------------------- */

.blockfall-banner {
  position: relative;
  max-width: 1024px;
  margin: 3rem auto 0;
  overflow: hidden;
  background: #071c21;
  border: 2px solid var(--ink); border-radius: 24px;
  box-shadow: var(--shadow-panel);
}
.blockfall-banner img {
  width: 100%; height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: contain;
}
.blockfall-banner figcaption {
  position: absolute; right: 1rem; bottom: 1rem;
  display: grid; gap: .04rem;
  padding: .58rem .78rem;
  background: rgba(255, 253, 247, .94);
  border: 1px solid rgba(16, 25, 40, .18); border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  line-height: 1.2;
}
.blockfall-banner figcaption span {
  color: var(--moss-deep); font-size: .62rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
}
.blockfall-banner figcaption strong { font-family: var(--font-display); font-size: 1rem; }

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 214px));
  justify-content: center; gap: 1.25rem;
  max-width: 720px;
  margin: 2rem auto 0;
}
.screenshot-card {
  margin: 0; padding: .45rem .45rem .7rem;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.screenshot-card img {
  width: 100%; height: auto;
  aspect-ratio: 520 / 1127;
  object-fit: contain;
  border: 2px solid var(--ink); border-radius: 16px;
  background: var(--ink);
}
.screenshot-card figcaption {
  padding: .55rem .35rem 0;
  color: var(--ink); font-size: .78rem; font-weight: 800;
  text-align: center; letter-spacing: .03em;
}
.game-details {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1024px;
  margin: 3rem auto 0; padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow-card);
}
.game-card-copy { padding: 1rem .5rem; }
.game-card-copy p { max-width: 30em; color: var(--ink-soft); font-size: 1.05rem; }

.status {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .8rem; margin-bottom: 1.4rem;
  border-radius: 999px; background: var(--wash);
  color: var(--moss-deep); font-size: .8rem; font-weight: 700;
  letter-spacing: .02em;
}
.status::before {
  content: ""; width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--moss-soft);
}
.feature-list {
  list-style: none;
  align-self: center;
  margin: 0; padding: 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li {
  display: grid; grid-template-columns: 9rem 1fr; gap: .85rem;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}
.feature-list strong {
  position: relative;
  padding-left: 1rem;
  color: var(--ink); font-size: .84rem;
}
.feature-list strong::before {
  content: ""; position: absolute; left: 0; top: .48rem;
  width: .42rem; height: .42rem; border-radius: 50%;
  background: var(--sun);
}
.feature-list span { color: var(--ink-soft); font-size: .82rem; line-height: 1.5; }
.platform-list {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin: 1.3rem 0 1.15rem;
}
.platform-list span {
  padding: .38rem .72rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--cream); color: var(--ink);
  font-size: .78rem; font-weight: 700;
}
.text-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--moss-deep); font-size: .92rem; font-weight: 800;
  text-underline-offset: .22em;
}
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(3px); }

/* ---------------------------------------------------------------
   Studio + values
   --------------------------------------------------------------- */

.studio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem); margin-top: 2.5rem;
}
.studio-grid p { margin: 0; color: var(--ink-soft); font-size: 1.14rem; }

.values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3.2rem;
}
.value-card {
  padding: 1.7rem 1.6rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.value-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 1.1rem;
  border-radius: 14px; background: var(--wash);
  color: var(--moss-deep);
}
.value-card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------------------------------------------------------------
   Contact panel
   --------------------------------------------------------------- */

.contact-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(4rem, 9vh, 6.5rem);
  padding: clamp(2.2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 199, 95, .22), transparent 42%),
    linear-gradient(135deg, var(--moss-deep) 0%, var(--moss) 70%);
  color: #fff;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  scroll-margin-top: 96px;
}
.contact-panel::after {
  content: ""; position: absolute; right: -70px; bottom: -110px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .12);
  pointer-events: none;
}
.contact-panel > * { position: relative; }
.contact-panel .eyebrow { color: var(--butter); }
.contact-panel h2 { max-width: 12em; }
.contact-panel p { max-width: 32em; margin: 1rem 0 0; color: #dcead4; }

/* ---------------------------------------------------------------
   Footer
   --------------------------------------------------------------- */

.site-footer { background: #f3eddd; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex; justify-content: space-between; gap: 3rem;
  padding: 3.2rem 0 3.6rem;
}
.footer-brand p { margin: .9rem 0 0; color: var(--ink-soft); font-size: .9rem; }
.footer-brand .footer-tagline { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.footer-cols { display: flex; gap: clamp(2rem, 5vw, 4.5rem); }
.footer-cols h3 {
  margin: 0 0 .9rem; font-family: var(--font-body);
  font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--moss-deep);
}
.footer-cols a {
  display: block; margin-bottom: .55rem;
  color: var(--ink-soft); font-size: .93rem; text-decoration: none;
}
.footer-cols a:hover { color: var(--ink); }

/* ---------------------------------------------------------------
   Legal / support pages
   --------------------------------------------------------------- */

.legal-page { max-width: 780px; padding: clamp(3.5rem, 8vh, 5rem) 0 6rem; }
.legal-page h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
.legal-page h2 { margin-top: 2.6rem; font-size: 1.45rem; }
.legal-page p { color: var(--ink-soft); font-size: 1.03rem; }
.legal-page section > p { max-width: 42em; }
.legal-page a:not(.button) { color: var(--moss-deep); font-weight: 600; }
.last-updated { margin-top: 1rem; font-size: .92rem !important; }

.app-privacy-page { max-width: 820px; }
.app-privacy-page h2 {
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}
.app-privacy-page ul {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}
.app-privacy-page li { margin-bottom: .7rem; padding-left: .2rem; }
.app-privacy-page li::marker { color: var(--moss-soft); }
.privacy-summary {
  margin: 2.25rem 0 3rem;
  padding: 1.5rem 1.65rem;
  color: var(--ink) !important;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sun);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.legal-table-wrap {
  width: 100%;
  margin: 1.4rem 0 1.1rem;
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}
.legal-table-wrap:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}
.legal-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.5;
}
.legal-table th,
.legal-table td {
  padding: .85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-table th {
  color: var(--ink);
  background: var(--wash);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-table th:last-child,
.legal-table td:last-child { border-right: 0; }
.legal-table tr:last-child td { border-bottom: 0; }

.support-card {
  margin-top: 2.5rem; padding: 1.9rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.support-card h2 { margin-top: 0 !important; }
.support-card p:last-child { margin-bottom: 0; }
.support-game .status { margin-bottom: 1rem; }
.support-game h2 { margin-bottom: 1rem; }

/* ---------------------------------------------------------------
   404
   --------------------------------------------------------------- */

.error-page { text-align: center; padding-bottom: 7rem; }
.error-page h1 { max-width: 14em; margin-inline: auto; text-wrap: balance; }
.error-page .lede { margin-inline: auto; }
.error-page .error-code {
  margin: 0 0 .5rem; font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 7.5rem); font-weight: 570;
  line-height: 1; color: var(--moss); letter-spacing: -.02em;
}

/* ---------------------------------------------------------------
   Motion
   --------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, .65, .3, 1);
  }
  html.js .reveal.in { opacity: 1; transform: none; }
  html.js .reveal-d1 { transition-delay: .08s; }
  html.js .reveal-d2 { transition-delay: .16s; }

  .float-a, .float-b, .float-c { transform-box: fill-box; transform-origin: center; }
  .float-a { animation: bob 5.5s ease-in-out infinite; }
  .float-b { animation: bob 6.5s ease-in-out .8s infinite; }
  .float-c { animation: bob 7s ease-in-out 1.6s infinite; }
  .drop { transform-box: fill-box; animation: drop 2.6s ease-in-out infinite alternate; }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes drop {
  from { transform: translateY(0); }
  to { transform: translateY(14px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------
   Responsive
   --------------------------------------------------------------- */

@media (max-width: 900px) {
  .values { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 760px) {
  .header-inner { position: relative; min-height: 72px; }
  .brand-mark { width: 50px; height: 39px; }
  .brand-name { font-size: 1.14rem; }
  html.js .menu-toggle { display: inline-flex; }
  html.js nav {
    position: absolute; top: calc(100% + .55rem); left: 0; right: 0;
    display: grid; gap: .25rem; padding: .65rem;
    background: var(--paper);
    border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow-panel);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }
  html.js nav.open { opacity: 1; visibility: visible; transform: none; }
  html.js nav a { padding: .72rem .8rem; border-radius: 12px; }
  html.js nav a:hover { background: var(--wash); }
  html.js nav .nav-cta { margin-top: .2rem; text-align: center; }
  html:not(.js) nav { flex-wrap: wrap; justify-content: flex-end; gap: .7rem; }
  html:not(.js) .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 2.2rem; }
  .hero h1 { font-size: clamp(2.72rem, 12vw, 4rem); overflow-wrap: anywhere; text-wrap: balance; }
  .hero-teaser { min-height: 300px; }
  .game-details { grid-template-columns: 1fr; }
  .screenshot-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(72vw, 240px);
    justify-content: start;
    max-width: none;
    margin-inline: -1.2rem;
    padding: .2rem 1.2rem 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .screenshot-card { scroll-snap-align: center; }
  .studio-grid { grid-template-columns: 1fr; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 2.2rem; }
  .header-inner, .footer-inner, .hero, .section, .contact-panel, .legal-page {
    width: min(100% - 2.4rem, 1160px);
  }
}

@media (max-width: 430px) {
  .brand-mark { width: 46px; height: 36px; }
  .brand-name { font-size: 1.05rem; }
  .header-inner, .footer-inner, .hero, .section, .contact-panel, .legal-page {
    width: min(100% - 2rem, 1160px);
  }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.2rem); }
  .hero-teaser { min-height: 275px; }
  .screenshot-strip { margin-inline: -1rem; padding-inline: 1rem; }
  .teaser-blocks { right: 1.2rem; top: 1.2rem; grid-template-columns: repeat(2, 42px); gap: 7px; }
  .teaser-blocks i { width: 42px; height: 42px; border-radius: 10px; }
  .blockfall-banner { border-radius: 18px; }
  .blockfall-banner figcaption { right: .65rem; bottom: .65rem; padding: .42rem .58rem; }
  .blockfall-banner figcaption span { font-size: .54rem; }
  .blockfall-banner figcaption strong { font-size: .84rem; }
  .feature-list li { grid-template-columns: 1fr; gap: .25rem; }
  .button { width: 100%; justify-content: center; }
  .footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .footer-cols > div:last-child { grid-column: 1 / -1; }
  .footer-cols a { overflow-wrap: anywhere; }
  .privacy-summary { padding: 1.25rem 1.2rem; }
}
