:root{
  --orange:#E17444;
  --orange-dark:#9A421E;
  --cream:#FAF0E4;
  --ink:#1a1207;
  --muted:#9a7d63;
  --line:#e3d4c0;
  --accent-yellow:#f2c245;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:100%}
body{
  background:linear-gradient(180deg,
    color-mix(in srgb, var(--cream), #fff 65%) 0%,
    color-mix(in srgb, var(--cream), #fff 20%) 45%,
    var(--cream) 100%);
  background-attachment:fixed;
  color:var(--ink);
  font-family:'Inter',system-ui,sans-serif;
  font-size:1rem;line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  padding-top:5.5rem;
}
::selection{background:var(--orange);color:var(--cream)}

/* ---- side rails ---- */
.rail{
  position:fixed;top:0;bottom:0;width:34px;
  display:flex;align-items:center;justify-content:center;
  z-index:40;pointer-events:none;
}
.rail.left{left:0}
.rail.right{right:0}
.rail span{
  writing-mode:vertical-rl;
  font-size:1rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--muted);font-weight:600;
}
.rail.left span{transform:rotate(180deg)}

/* ---- floating rounded header pill (always visible) ---- */
.topbar{
  position:fixed;top:14px;left:44px;right:44px;height:56px;z-index:50;
  display:flex;align-items:center;gap:.75rem;padding:0 20px;
  background:color-mix(in srgb, var(--cream), #fff 25%);
  border:1px solid var(--line);border-radius:999px;
  backdrop-filter:saturate(1.4) blur(12px);
  -webkit-backdrop-filter:saturate(1.4) blur(12px);
  box-shadow:0 4px 20px rgba(26,18,7,.06);
  transition:box-shadow .25s, background .25s;
  pointer-events:auto;
}
.topbar.scrolled{
  box-shadow:0 6px 24px rgba(26,18,7,.10);
}
@media(min-width:821px){
  .topbar{transition:left .3s ease, right .3s ease, box-shadow .25s, background .25s}
  .topbar.scrolled{left:25%;right:25%}
}
.topbar-brand{
  display:flex;align-items:center;gap:.625rem;
  text-decoration:none;
}
.topbar-brand img{width:36px;height:auto;display:block}

/* ---- push nav to the right of the pill ---- */
.topbar .topnav{margin-left:auto}

.eco-toggle{
  display:flex;flex-direction:row-reverse;align-items:center;gap:9px;
  border:none;background:transparent;
  padding:.375rem .5rem .375rem .875rem;border-radius:999px;cursor:pointer;
  font-family:'Inter',sans-serif;font-weight:600;font-size:1rem;color:var(--ink);
  transition:background .2s, color .2s;
}
.eco-toggle:hover{background:color-mix(in srgb, var(--cream), var(--ink) 6%)}
.eco-switch{position:relative;width:30px;height:16px;border-radius:20px;background:#d9c7b0;flex:none;transition:background .25s}
.eco-switch::after{content:"";position:absolute;top:2px;left:2px;width:12px;height:12px;border-radius:50%;background:#fff;transition:left .25s;box-shadow:0 1px 2px rgba(0,0,0,.25)}
.eco-toggle[aria-pressed="true"] .eco-switch{background:var(--ink)}
.eco-toggle[aria-pressed="true"] .eco-switch::after{left:16px}

/* ---- top nav (flat inside pill) ---- */
.topnav{
  display:flex;gap:.125rem;
  background:transparent;border:none;border-radius:999px;
  padding:0;
}
.topnav a{
  padding:.375rem .875rem;border-radius:999px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:1rem;
  color:var(--muted);text-decoration:none;
  transition:background .2s,color .2s;
}
.topnav a:hover{color:var(--ink);background:color-mix(in srgb, var(--cream), var(--ink) 6%)}
.topnav a[aria-current="page"]{background:var(--ink);color:var(--cream)}

/* ---- eco mode: greyscale palette + click-to-load ---- */
body.eco{
  --orange:#7c7c7c;
  --orange-dark:#565656;
  --cream:#ededed;
  --ink:#1e1e1e;
  --muted:#8a8a8a;
  --line:#d2d2d2;
}
body.eco img{filter:grayscale(1)}
.eco-img{position:relative}
.eco-load{display:none}
body.eco .eco-img:not(.loaded){cursor:pointer}
body.eco .eco-img:not(.loaded) img{visibility:hidden}
body.eco .eco-img:not(.loaded) .eco-load{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;
  position:absolute;inset:0;border:1px dashed var(--muted);border-radius:inherit;
  background:#e2e2e2;color:#5a5a5a;font-weight:600;
  font-size:1rem;line-height:1.3;text-align:center;padding:.75rem;cursor:pointer;
}
.eco-load svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.7}
.eco-load .sz{font-weight:500;color:#8a8a8a;font-size:1rem}

/* ---- layout ---- */
.wrap{max-width:1280px;margin:0 auto;padding:0 64px}

/* ---- hero ---- */
.hero{padding-top:1rem}
.hero-logo{display:block;width:clamp(190px,24vw,340px);height:auto;max-width:100%}
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.section-label{
  margin-top:2.5rem;padding-bottom:1rem;border-bottom:1px solid var(--line);
  font-size:1rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);font-weight:600;
}

/* ---- one-pager sections ---- */
.sec{padding-top:2rem;scroll-margin-top:5rem}

.game-row{display:grid;grid-template-columns:minmax(0,440px) 1fr;gap:2.75rem;margin-top:1.75rem;align-items:start}
.game-row + .game-row{margin-top:2.5rem;padding-top:2.5rem;border-top:1px solid var(--line)}
.game-media{position:relative;aspect-ratio:923/1306;border-radius:6px;overflow:hidden;background:#1b1b1b}
.game-media img{width:100%;height:100%;object-fit:cover;transition:.6s ease;filter:saturate(.95)}
.game-media:hover img{transform:scale(1.04)}

.coming-soon{
  aspect-ratio:923/1306;border-radius:6px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;text-align:center;padding:24px;
  background:linear-gradient(150deg,
    color-mix(in srgb, var(--orange) 60%, #fff) 0%,
    var(--orange) 42%,
    var(--orange-dark) 100%);
}
.coming-soon span{
  font-family:'Climate Crisis';color:var(--cream);
  font-size:clamp(1.875rem,3.4vw,3.125rem);line-height:.92;letter-spacing:.02em;text-transform:uppercase;
}

.game-info{display:flex;flex-direction:column}
.badge{
  display:inline-flex;align-items:center;gap:.5rem;align-self:flex-start;
  border:1px solid var(--line);border-radius:40px;padding:.5rem 1rem;margin-bottom:1.125rem;
  font-size:1rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);
}
.badge::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--orange-dark)}
.badge.soon::before{background:var(--muted)}
.game-name{font-weight:900;color:var(--orange-dark);font-size:clamp(1.875rem,3.4vw,2.875rem);line-height:1;letter-spacing:-.02em;text-transform:uppercase}
.game-tagline{margin-top:1rem;font-size:1.125rem;line-height:1.5;font-weight:400;color:var(--ink)}

.meta-list{display:flex;flex-direction:column}
@media(min-width:560px){
  .studio-main > .meta-list{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);column-gap:2rem}
  .studio-main > .meta-list > :nth-child(1){grid-column:1;grid-row:1}
  .studio-main > .meta-list > :nth-child(2){grid-column:1;grid-row:2}
  .studio-main > .meta-list > :nth-child(6){grid-column:1;grid-row:3}
  .studio-main > .meta-list > :nth-child(7){grid-column:1;grid-row:4}
  .studio-main > .meta-list > :nth-child(3){grid-column:2;grid-row:1}
  .studio-main > .meta-list > :nth-child(4){grid-column:2;grid-row:2}
  .studio-main > .meta-list > :nth-child(5){grid-column:2;grid-row:3}
}
.meta-row{display:flex;justify-content:space-between;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--line)}
.meta-row .k{color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.1em;font-size:1rem;display:inline-flex;align-items:center;gap:.55rem}
.meta-icon{width:18px;height:18px;flex:none;color:var(--orange-dark)}
.meta-row .v{font-weight:600;color:var(--ink);font-size:1.0625rem;text-align:right}
.meta-row a.v{color:var(--orange-dark);text-decoration:none;transition:.2s}
.meta-row a.v:hover{text-decoration:underline}

/* ---- accelerator note under tagline ---- */
.game-accel{
  margin-top:1.25rem;padding-top:1.125rem;border-top:1px solid var(--line);
  font-size:1rem;line-height:1.5;color:var(--muted);
}
.game-accel strong{color:var(--orange-dark);font-weight:700}

.studio-row{display:flex;flex-direction:column;align-items:flex-start;gap:2.5rem;margin-top:1.75rem}
.studio-main{width:100%;min-width:0}
.studio-row .founders{margin-top:0}
.founders{display:grid;grid-template-columns:repeat(3,minmax(0,240px));justify-content:space-between;gap:1.75rem;margin-top:2rem;width:100%}
.founder{margin:0;display:flex;flex-direction:column}
.founder-media{aspect-ratio:1/1;border-radius:30%;overflow:hidden;background:#1b1b1b}
.founder-media img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(1)}
.founder-ph{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(150deg,
    color-mix(in srgb, var(--orange) 55%, #fff) 0%,
    var(--orange) 48%,
    var(--orange-dark) 100%);
  filter:grayscale(1);
}
.founder-ph span{
  font-family:'Climate Crisis';color:var(--cream);
  font-size:clamp(2.125rem,5vw,3.25rem);line-height:.9;text-transform:uppercase;
}
.founder-cap{margin-top:.75rem;display:flex;flex-direction:column;align-items:center;gap:.25rem;text-align:center}
.founder-name{font-weight:700;font-size:1.0625rem;color:var(--ink)}
.founder-title{font-weight:600;font-size:1rem;color:var(--muted);line-height:1.25;text-align:center}
.founder-link{font-size:1rem;font-weight:600;color:var(--orange-dark);text-decoration:none}
.founder-link:hover{text-decoration:underline}
.founder-email{font-size:1rem;font-weight:500;color:var(--muted);text-decoration:none;line-height:1.25;max-width:100%}
.founder-email:hover{color:var(--orange-dark);text-decoration:underline}

.studio-body{max-width:560px}
.studio-body p{font-size:1.125rem;line-height:1.5;font-weight:400;color:var(--ink)}
.studio-body p + p{margin-top:1.25rem}
.studio-main > .meta-list{margin-top:2rem}

/* ---- blog list (used on blog.html + latest on home) ---- */
.post-list{display:flex;flex-direction:column;gap:1rem;margin-top:1.75rem}
.post-item{
  display:grid;
  grid-template-columns:132px 1fr auto;
  grid-template-rows:auto auto 1fr;
  gap:.375rem 1.5rem;
  padding:1.25rem 1.5rem;
  background:color-mix(in srgb, var(--cream), #fff 55%);
  border:1px solid var(--line);border-radius:8px;
  text-decoration:none;color:inherit;
  align-items:start;
  transition:background .2s,border-color .2s,transform .2s;
}
.post-item:hover{
  background:color-mix(in srgb, var(--cream), #fff 25%);
  border-color:var(--orange);
  transform:translateY(-1px);
}
.post-thumb{
  grid-column:1 / 2;grid-row:1 / span 3;
  width:132px;height:132px;
  overflow:hidden;border-radius:10px;
  background:var(--cream);
  align-self:center;
}
.post-thumb img{
  width:100%;height:100%;object-fit:cover;display:block;
  border-radius:inherit;
}
.post-title{
  grid-column:2 / 3;grid-row:1;
  font-weight:600;font-size:1.125rem;color:var(--ink);line-height:1.35;
  align-self:start;
}
.post-item:hover .post-title{color:var(--orange-dark)}
.post-date{
  grid-column:3 / 4;grid-row:1;
  font-size:1rem;color:var(--muted);font-weight:500;white-space:nowrap;
  align-self:start;
}
.post-excerpt{
  grid-column:2 / -1;grid-row:2;
  color:var(--muted);font-size:1rem;line-height:1.5;
}
.post-more{
  display:inline-flex;align-items:center;gap:.375rem;margin-top:1.5rem;
  font-weight:600;color:var(--orange-dark);text-decoration:none;font-size:1rem;
}
.post-more:hover{text-decoration:underline}
.post-empty{
  margin-top:1.75rem;padding:1.5rem;border:1px dashed var(--line);border-radius:6px;
  color:var(--muted);font-size:1rem;line-height:1.5;
}

/* ---- Blog index: editorial cards (image left, text right) ---- */
#posts .post-list{gap:0;margin-top:1.75rem}
#posts .post-item{
  grid-template-columns:clamp(280px,34vw,460px) 1fr;
  grid-template-rows:auto auto 1fr;
  gap:.375rem 2rem;
  padding:2rem 0;
  background:transparent;
  border:none;
  border-radius:0;
  border-bottom:1px solid var(--line);
  transform:none;
  align-items:start;
}
#posts .post-item:first-child{padding-top:.75rem}
#posts .post-item:last-child{border-bottom:none}
#posts .post-item:hover{
  transform:none;
  background:transparent;
  border-color:var(--line);
}
#posts .post-thumb{
  grid-column:1;grid-row:1 / span 3;
  width:100%;height:auto;aspect-ratio:16/9;
  border-radius:10px;
  align-self:start;
  background:var(--cream);
  overflow:hidden;
  margin-bottom:0;
}
#posts .post-title{
  grid-column:2;grid-row:1;
  font-size:clamp(1.25rem,2vw,1.5rem);
  font-weight:600;line-height:1.25;
  letter-spacing:-.01em;
  align-self:start;
}
#posts .post-date{
  grid-column:2;grid-row:2;
  font-size:.9375rem;color:var(--muted);font-weight:500;
  align-self:start;
}
#posts .post-excerpt{
  grid-column:2;grid-row:3;
  font-size:1rem;line-height:1.55;color:var(--ink);
  margin-top:.375rem;max-width:44em;
  align-self:start;
}
@media(max-width:720px){
  #posts .post-item{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto auto;
  }
  #posts .post-thumb{
    grid-column:1;grid-row:1;
    width:100%;max-width:none;margin-bottom:.5rem;
  }
  #posts .post-title{grid-column:1;grid-row:2}
  #posts .post-date{grid-column:1;grid-row:3}
  #posts .post-excerpt{grid-column:1;grid-row:4}
}

/* ---- page heading (blog index, etc.) ---- */
.page-head{padding-top:1.5rem}
.page-title{
  font-family:'Climate Crisis',serif;
  font-weight:400;font-size:clamp(2rem,3.6vw,2.875rem);line-height:1.1;color:var(--orange-dark);
  letter-spacing:.01em;
}
.page-lede{margin-top:.875rem;max-width:640px;font-size:1.125rem;color:var(--muted);line-height:1.5}

/* ---- article page (Low-tech Magazine inspired) ---- */
.article{max-width:640px;margin:0 auto;padding-top:1rem}
.article-back{
  display:inline-flex;align-items:center;gap:.375rem;
  font-family:'Inter',sans-serif;
  color:var(--muted);text-decoration:none;font-weight:600;font-size:1rem;
  margin-bottom:1.75rem;
}
.article-back:hover{color:var(--orange-dark)}
.article-thumb{
  width:100%;aspect-ratio:16/9;
  overflow:hidden;border-radius:12px;
  background:var(--cream);
  margin-bottom:1.75rem;
  border:1px solid var(--line);
}
.article-thumb img{
  width:100%;height:100%;object-fit:cover;display:block;
  border-radius:inherit;
}
.article-header{margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--line)}
.article-date{
  font-family:'Inter',sans-serif;
  color:var(--muted);font-size:1rem;font-weight:500;
}
.article-title{
  margin-top:.5rem;
  font-family:'Climate Crisis',serif;
  font-weight:400;
  font-size:clamp(1.875rem,3.4vw,2.5rem);line-height:1.15;
  color:var(--orange-dark);letter-spacing:.01em;
}
.article-body{
  font-family:'Inter',sans-serif;
  font-size:1.15rem;line-height:1.75;color:var(--ink);
}
.article-body p{margin-bottom:1.5rem}
.article-body p:last-child{margin-bottom:0}
.article-body strong{font-weight:700;color:var(--ink)}
.article-body em{font-style:italic}
.article-body a{
  color:var(--ink);text-decoration:none;
  background-image:linear-gradient(to top, var(--accent-yellow) 0%, var(--accent-yellow) 28%, transparent 28%, transparent 100%);
  padding:0 .05em;
  transition:background-image .2s,background-color .2s;
}
.article-body a:hover{
  background-image:none;background-color:var(--accent-yellow);
}
.article-body h2{
  margin-top:2.5rem;margin-bottom:.875rem;
  font-family:'Inter',sans-serif;font-size:1.375rem;font-weight:600;
  color:var(--ink);line-height:1.25;
}
.article-body h3{
  margin-top:2rem;margin-bottom:.75rem;
  font-family:'Inter',sans-serif;font-size:1.125rem;font-weight:600;
  color:var(--ink);
}
.article-body > p:first-child::first-letter{
  float:left;
  font-family:'Inter',sans-serif;
  font-size:3.75em;line-height:.9;
  padding:.02em .12em 0 0;
  font-weight:700;
  color:var(--orange-dark);
}

/* Article figures — plain framed image + sans-serif caption */
.article-body figure{margin:2rem 0}
.figure-media{
  background:color-mix(in srgb, var(--cream), #fff 55%);
  border-radius:12px;overflow:hidden;
  border:1px solid var(--line);
  line-height:0;
}
.figure-media img{
  width:100%;height:auto;display:block;
  border-radius:inherit;
}
.article-body figcaption{
  margin-top:.625rem;
  font-family:'Inter',sans-serif;
  font-size:.9375rem;color:var(--muted);line-height:1.45;
}
@media(min-width:820px){
  .article-thumb,
  .article-body .figure-media,
  .article-body .figure-pair{
    margin-left:-56px;
    margin-right:-56px;
    width:calc(100% + 112px);
  }
}
.article-body figcaption a{
  color:var(--muted);
  background-image:linear-gradient(to top, var(--accent-yellow) 0%, var(--accent-yellow) 28%, transparent 28%, transparent 100%);
}
.article-body figcaption a:hover{color:var(--ink)}
.figure-pair{display:grid;grid-template-columns:1fr;gap:.75rem}
.figure-pair .figure-media{margin:0}

.article-pullquote{
  margin:3rem auto;
  padding:0;
  max-width:24em;
  font-family:'Inter',sans-serif;
  font-size:clamp(1.625rem,2.6vw,2.125rem);
  font-weight:500;
  font-style:italic;
  line-height:1.25;
  letter-spacing:-.01em;
  color:var(--ink);
  text-align:center;
  border:none;
  background:none;
  border-radius:0;
}
.article-pullquote::after{
  content:"";
  display:block;
  width:48px;height:3px;border-radius:2px;
  background:var(--accent-yellow);
  margin:1.25rem auto 0;
}

/* ---- newsletter signup ---- */
.newsletter-sec{padding-top:2rem}
.newsletter{
  margin:3rem auto 0;
  padding:1.75rem 1.875rem;
  background:color-mix(in srgb, var(--cream), #fff 55%);
  border:1px solid var(--line);border-radius:8px;
  max-width:560px;
  text-align:center;
}
.newsletter-lede{margin-top:.5rem;color:var(--muted);font-size:1rem;line-height:1.5}
.newsletter-title{
  margin:0;
  color:var(--ink);
  font-family:'Inter',sans-serif;
  font-size:1.25rem;font-weight:600;line-height:1.3;letter-spacing:-.01em;
}
.newsletter-form{margin-top:1.125rem}
.newsletter-row{display:flex;gap:.5rem;align-items:stretch}
.newsletter input[type="email"]{
  flex:1;min-width:0;
  padding:.625rem .875rem;
  border:1px solid var(--line);border-radius:6px;
  background:var(--cream);
  font-family:'Inter',sans-serif;font-size:1rem;color:var(--ink);
  transition:border-color .2s,box-shadow .2s;
}
.newsletter input[type="email"]:focus{
  outline:none;border-color:var(--orange);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--orange) 25%, transparent);
}
.newsletter button[type="submit"]{
  padding:.625rem 1.25rem;
  border:0;border-radius:6px;
  background:var(--orange-dark);color:var(--cream);
  font-family:'Inter',sans-serif;font-weight:600;font-size:1rem;
  cursor:pointer;transition:background .2s;
}
.newsletter button[type="submit"]:hover{background:var(--ink)}
.newsletter-consent{
  display:flex;align-items:flex-start;gap:.5rem;
  margin-top:.875rem;
  font-size:.9375rem;color:var(--muted);line-height:1.45;
  cursor:pointer;
}
.newsletter-consent input[type="checkbox"]{
  margin-top:.2rem;flex:none;
  width:16px;height:16px;
  accent-color:var(--orange-dark);cursor:pointer;
}
.newsletter-consent a{color:var(--orange-dark);text-decoration:underline}
.newsletter-status{
  min-height:1.25rem;margin-top:.75rem;
  font-size:.9375rem;font-weight:600;
}
.newsletter-status.ok{color:var(--orange-dark)}
.newsletter-status.err{color:#a02523}
.newsletter-cta{
  display:inline-block;
  margin-top:1.125rem;
  padding:.625rem 1.25rem;
  border:0;border-radius:6px;
  background:var(--orange-dark);color:var(--cream);
  font-family:'Inter',sans-serif;font-weight:600;font-size:1rem;
  text-decoration:none;
  transition:background .2s;
}
.newsletter-cta:hover{background:var(--ink)}
.newsletter-cta:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px color-mix(in srgb, var(--orange) 35%, transparent);
}
.newsletter-note{
  margin-top:.875rem;
  font-size:.9375rem;color:var(--muted);line-height:1.45;
}
.newsletter-note a{color:var(--orange-dark);text-decoration:underline}

/* ---- footer ---- */
.footer{
  display:flex;flex-direction:column;align-items:center;gap:1.75rem;
  padding:3rem 0;margin-top:2rem;border-top:1px solid var(--line);
}
.footer-logo{display:block;width:120px;height:auto}
.footer-badge{display:flex;justify-content:center;min-height:60px}
.footer-badge #dbb{display:inline-block}
.footer-legal{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:.5rem 1.25rem;
  font-size:.9375rem;color:var(--muted);
}
.footer-legal a{color:var(--muted);text-decoration:none;font-weight:500}
.footer-legal a:hover{color:var(--orange-dark);text-decoration:underline}

/* ---- legal/prose page (privacy) ---- */
.legal{max-width:680px;margin:0 auto;padding-top:1rem}
.legal-header{margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--line)}
.legal-title{
  font-family:'Climate Crisis',serif;
  font-weight:400;font-size:clamp(1.75rem,3vw,2.5rem);line-height:1.15;
  color:var(--orange-dark);letter-spacing:.01em;
}
.legal-updated{margin-top:.5rem;color:var(--muted);font-size:1rem}
.legal-body{font-size:1.0625rem;line-height:1.65;color:var(--ink)}
.legal-body h2{margin-top:2rem;margin-bottom:.75rem;font-size:1.25rem;font-weight:600;color:var(--ink)}
.legal-body h3{margin-top:1.5rem;margin-bottom:.5rem;font-size:1.0625rem;font-weight:600;color:var(--ink)}
.legal-body p{margin-bottom:1rem}
.legal-body ul{margin:0 0 1rem 1.25rem;padding:0}
.legal-body ul li{margin-bottom:.375rem}
.legal-body a{color:var(--orange-dark);text-decoration:underline}
.legal-body strong{font-weight:600;color:var(--ink)}
.legal-body dl{margin-bottom:1rem}
.legal-body dt{font-weight:600;margin-top:.75rem}
.legal-body dd{margin-left:0;color:var(--muted);font-size:.9375rem}

@media(max-width:820px){
  .wrap{padding:0 42px}
  .rail{display:none}
  .game-row{grid-template-columns:1fr;gap:1.5rem}
  .studio-row{gap:1.75rem}
  .founders{grid-template-columns:1fr;gap:1.75rem;max-width:360px;margin-left:auto;margin-right:auto;justify-content:stretch}
}
@media(max-width:560px){
  .wrap{padding:0 24px}
  .founders{max-width:320px}
  .founder-email{overflow-wrap:anywhere}
  .hero{padding-top:6.5rem}
  .post-item{grid-template-columns:1fr;grid-template-rows:auto auto auto auto;gap:.5rem}
  .post-thumb{grid-column:1;grid-row:1;width:100%;height:auto;aspect-ratio:16/9}
  .post-title{grid-column:1;grid-row:2}
  .post-date{grid-column:1;grid-row:3;margin-top:-.125rem}
  .post-excerpt{grid-column:1;grid-row:4}
  .newsletter{padding:1.25rem 1.25rem}
  .newsletter-row{flex-direction:column;gap:.5rem}
  .newsletter button[type="submit"]{width:100%}
  .newsletter-cta{display:block;text-align:center}
  .figure-pair{grid-template-columns:1fr}
}
@media(max-width:820px){
  .topbar{left:16px;right:16px;height:54px;top:12px;gap:.5rem;padding:0 14px}
  .topbar-brand img{width:32px}
  .eco-toggle{padding:.375rem .5rem .375rem .75rem}
  .topnav a{padding:.375rem .75rem}
}
@media(max-width:560px){
  .topbar{left:12px;right:12px;height:52px;top:10px;gap:.375rem;padding:0 12px}
  .topbar-brand img{width:30px}
  .eco-toggle{padding:.375rem .5rem;gap:6px}
  .topnav a{padding:.375rem .625rem}
}
@media(max-width:380px){
  .wrap{padding:0 18px}
  .topbar{padding:0 10px}
}
