:root {
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #17181d;
  --ink-soft: rgba(23, 24, 29, .78);
  --muted: #676b78;
  --line: rgba(23, 24, 29, 0.11);
  --card: rgba(255,255,255,0.64);
  --card-strong: rgba(255,255,255,0.86);
  --violet: #7c6aa7;
  --violet-soft: #ede7f7;
  --blue: #cbdcf6;
  --shadow: 0 24px 70px rgba(37, 39, 51, 0.13);
  --shadow-float: 0 34px 90px rgba(24, 18, 38, 0.22);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(214,224,246,.95), transparent 32rem),
    radial-gradient(circle at 100% 12%, rgba(231,214,235,.85), transparent 35rem),
    var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.brand-script {
  font-family: "Snell Roundhand", "Bradley Hand", "Segoe Script", "Comic Sans MS", cursive;
  color: #111217;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  white-space: nowrap;
}

.site-header {
  position: fixed; inset: 18px 22px auto 22px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 12px 38px rgba(20, 24, 33, .08);
}
.site-header.scrolled { background: rgba(255,255,255,.86); }
.brand {
  display: flex; align-items: center; gap: 12px;
  min-width: 190px; padding: 6px 18px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
}
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a {
  padding: 10px 15px; border-radius: 999px; color: rgba(23,24,29,.74); font-weight: 700; font-size: 14px;
}
.site-nav a:hover { background: rgba(124,106,167,.12); color: var(--ink); }
.nav-toggle { display:none; border: 0; background: transparent; padding: 9px; }
.nav-toggle span { display:block; width:22px; height:2px; background:var(--ink); margin:5px; }

.split-hero {
  min-height: 100vh; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; background: #111;
}
.split-panel { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; transition: filter .45s ease; isolation: isolate; }
.split-panel:first-child { clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%); margin-right: -8vw; z-index: 2; padding: 140px 10vw 80px 7vw; }
.split-panel:nth-child(2) { clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%); padding: 150px 7vw 80px 14vw; }
.panel-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.02); transition: transform .8s ease, filter .8s ease; }
.compute-panel .panel-bg { background-image: linear-gradient(90deg, rgba(248,247,243,.91), rgba(248,247,243,.56)), url('assets/compute-bg.svg'); }
.worlds-panel .panel-bg {
  background-image:
    linear-gradient(90deg, rgba(31,24,40,.30), rgba(255,255,255,.24)),
    radial-gradient(circle at 68% 20%, rgba(255,255,255,.42), transparent 32%),
    url('assets/worlds-oc.png');
  background-size: cover, cover, auto 112%;
  background-position: center, center, 68% 60%;
  background-repeat: no-repeat;
}
.worlds-panel::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(90deg, rgba(15,15,20,.16), rgba(255,255,255,.06) 42%, rgba(255,255,255,.28));
  pointer-events:none;
}
.split-panel:hover .panel-bg { transform: scale(1.065); }
.split-panel:hover .panel-content { transform: translateY(-8px); }
.split-panel::after { content:""; position: absolute; inset:0; z-index:-1; background: rgba(255,255,255,0); transition: background .35s ease; }
.split-panel:hover::after { background: rgba(255,255,255,.12); }
.panel-content { max-width: 540px; transition: transform .45s ease; }
.panel-content.align-right { margin-left: auto; color: #fff; text-shadow: 0 10px 40px rgba(0,0,0,.38); padding-top: 32px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 850; color: var(--violet); }
.panel-content h1 { font-size: clamp(46px, 7vw, 96px); line-height: .91; letter-spacing: -.075em; margin: 10px 0 22px; }
.panel-content p { font-size: clamp(16px, 1.5vw, 21px); max-width: 460px; color: rgba(23,24,29,.70); }
.align-right p, .align-right .eyebrow { color: rgba(255,255,255,.92); }
.panel-link, .button {
  display:inline-flex; align-items:center; gap: 10px; margin-top: 24px; padding: 14px 20px;
  border-radius: 999px; background: rgba(255,255,255,.78); color: var(--ink); font-weight: 850;
  box-shadow: 0 16px 42px rgba(20,24,33,.11);
}
.panel-link::after { content:"→"; font-size: 20px; }

.hero-center-card {
  position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%); z-index: 7;
  width: min(440px, 33vw); padding: 30px 34px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(28px) saturate(1.18);
  text-align: center;
}
.hero-center-card .brand-script { font-size: clamp(34px, 4.5vw, 62px); }
.hero-center-card p { margin: 14px auto 0; max-width: 340px; color: var(--muted); font-size: 15px; font-weight: 650; }

.section { width: min(1180px, calc(100% - 42px)); margin: 0 auto; padding: 100px 0; }
.section-heading { display:flex; align-items:end; justify-content:space-between; gap: 22px; margin-bottom: 28px; }
.section h2, .page-hero h1, .product-card h3, .article-grid h3, .ip-feature h3, .character-copy h3, .license-hero h1 { letter-spacing: -.055em; }
.section h2 { font-size: clamp(40px, 6vw, 76px); line-height: .98; margin: 8px 0 0; }
.two-column { display:grid; grid-template-columns: .95fr 1fr; gap: min(10vw, 100px); align-items:start; }
.two-column p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.two-column.strategy-copy p { font-size: 18px; }
.text-link { color: var(--violet); font-weight: 850; }
.text-link::after { content:" →"; }
.tech-grid, .showcase-grid, .product-grid, .article-grid, .gallery-grid { display:grid; gap: 18px; }
.tech-grid { grid-template-columns: repeat(4, 1fr); }
.tech-grid article, .product-card, .article-grid article, .novel-card, .detail-panels article, .license-card, .license-note, .product-actions, .status-ribbon {
  border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.62); box-shadow: 0 16px 45px rgba(20,24,33,.06);
}
.tech-grid article { padding: 24px; min-height: 250px; }
.tech-grid span, .product-card span, .tag, .license-badge {
  display:inline-flex; align-items:center; width:max-content; padding: 6px 12px; border-radius:999px; background: var(--violet-soft); color: var(--violet); font-weight: 850; font-size: 12px;
}
.tech-grid h3, .product-card h3, .article-grid h3 { font-size: 24px; line-height: 1.08; }
.tech-grid p, .product-card p, .article-grid p, .license-card p { color: var(--muted); }
.ip-feature { display:grid; grid-template-columns: .9fr 1fr; gap: 40px; align-items:center; }
.ip-feature img { border-radius: 28px; max-height: 640px; width:100%; object-fit: cover; object-position: center 34%; box-shadow: var(--shadow); }
.ip-feature h3 { font-size: clamp(30px, 4vw, 52px); line-height:1.02; }
.showcase-grid { grid-template-columns: repeat(3, 1fr); }
.showcase-grid figure { margin:0; border-radius: 28px; overflow:hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 16px 45px rgba(20,24,33,.08); }
.showcase-grid img { aspect-ratio: 16/10; width:100%; object-fit: cover; }
.showcase-grid figcaption { padding: 16px 18px 18px; font-weight: 850; }
.blog-list { display:grid; gap: 12px; }
.blog-list a { display:grid; grid-template-columns: 100px 1fr auto; gap: 16px; align-items:center; padding: 18px 20px; border:1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.54); }
.blog-list time, .blog-list span { color: var(--violet); font-weight: 850; font-size: 13px; }
.license-teaser { font-size: 18px; }
.license-teaser .button { background: #17181d; color:#fff; }

.page-hero { min-height: 72vh; display:flex; align-items:end; padding: 150px min(7vw,80px) 72px; background-size: cover; background-position: center; position:relative; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(246,244,239,.95), rgba(246,244,239,.55)); }
.page-hero > div { position:relative; z-index:1; max-width: 820px; }
.page-hero h1 { font-size: clamp(56px, 10vw, 126px); letter-spacing: -.08em; line-height:.88; margin: 12px 0 20px; }
.page-hero p { font-size: clamp(17px, 2vw, 24px); max-width: 740px; color: var(--ink-soft); }
.compute-page-hero { background-image: url('assets/compute-bg.svg'); }
.worlds-page-hero { background-image: url('assets/worlds-oc.png'); background-position: center 38%; }
.worlds-page-hero::before { background: linear-gradient(90deg, rgba(246,244,239,.95), rgba(246,244,239,.67), rgba(246,244,239,.26)); }

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card { min-height: 246px; display:flex; flex-direction:column; justify-content:space-between; padding: 24px; transition: transform .25s ease, background .25s ease; }
.product-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.86); }
.product-meta { display:flex; gap: 8px; flex-wrap:wrap; margin: 12px 0; }
.article-grid { grid-template-columns: repeat(3, 1fr); }
.article-grid article { padding: 24px; }
.article-grid time { color: var(--violet); font-weight: 850; }
.character-layout { display:grid; grid-template-columns: minmax(320px, 560px) 1fr; gap: 44px; align-items:center; }
.character-layout > img { border-radius: 34px; box-shadow: var(--shadow); max-height: 840px; object-fit: cover; object-position: center top; }
.character-copy h3 { font-size: clamp(32px, 5vw, 64px); line-height:1.02; }
.character-copy p, .novel-card p { color: var(--muted); }
.gallery-grid img { aspect-ratio: 4/3; }
.novel-card { max-width: 780px; padding: 30px; }

.product-hero { background-image: url('../assets/compute-bg.svg'); }
.product-detail .button { background: #17181d; color: #fff; border: 0; }
.detail-panels { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 42px 0; }
.detail-panels article { padding: 24px; }
.product-actions { display:flex; flex-wrap:wrap; gap: 12px; padding: 16px; margin-bottom: 34px; background: rgba(255,255,255,.72); }
.product-actions .button { margin-top:0; }
.button.secondary { background: rgba(255,255,255,.78); color: var(--ink); border:1px solid var(--line); }
.button.disabled { background: rgba(23,24,29,.08); color: rgba(23,24,29,.45); cursor: not-allowed; box-shadow:none; }
.status-ribbon { padding: 16px 18px; margin-bottom: 26px; color: var(--muted); }
.status-ribbon strong { color: var(--ink); }

.license-hero { padding: 150px min(7vw,80px) 56px; }
.license-hero h1 { font-size: clamp(54px, 10vw, 120px); line-height:.9; margin: 10px 0 20px; }
.license-hero p { max-width: 820px; color: var(--muted); font-size: 18px; }
.license-tabs { display:flex; flex-wrap:wrap; gap: 10px; margin-bottom: 26px; }
.license-tab { border:1px solid var(--line); background: rgba(255,255,255,.62); color: var(--ink); padding: 12px 18px; border-radius: 999px; font-weight:850; cursor:pointer; }
.license-tab.active { background: #17181d; color:#fff; }
.license-panel { display:none; }
.license-panel.active { display:block; }
.license-list { display:grid; gap: 14px; }
.license-card { display:grid; grid-template-columns: 1fr auto; gap: 18px; align-items:center; padding: 20px 22px; }
.license-card h3 { margin: 6px 0 8px; font-size: 26px; letter-spacing:-.04em; }
.license-card p { margin:0; max-width:720px; }
.license-actions { display:flex; gap: 10px; flex-wrap:wrap; justify-content:flex-end; }
.license-actions .button { margin-top:0; padding: 11px 15px; font-size: 14px; }
.license-note { padding: 24px; margin-top: 26px; color: var(--muted); }

.footer { width: min(1180px, calc(100% - 42px)); margin: 40px auto 28px; padding: 34px; border-radius: 30px; background: rgba(23,24,29,.92); color: #fff; display:grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.footer p { color: rgba(255,255,255,.68); margin:8px 0 0; }
.footer-links { display:flex; flex-wrap:wrap; gap: 12px; justify-content:flex-end; }
.footer-links a { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.08); }
.fineprint { grid-column: 1/-1; font-size: 13px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .product-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-center-card { width:min(420px, 42vw); }
}
@media (max-width: 920px) {
  .site-header { inset: 12px 12px auto 12px; }
  .brand { min-width: 170px; }
  .brand-script { font-size: 27px; }
  .nav-toggle { display:block; }
  .site-nav { display:none; position:absolute; right:10px; top:64px; flex-direction:column; align-items:stretch; min-width: 220px; padding: 10px; border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
  .site-nav.open { display:flex; }
  .split-hero { display:flex; flex-direction:column; min-height:auto; background: transparent; }
  .split-panel, .split-panel:first-child, .split-panel:nth-child(2) { min-height: 58vh; clip-path:none; margin:0; padding: 104px 28px 50px; }
  .worlds-panel .panel-bg { background-size: cover, cover, auto 105%; background-position:center, center, 62% 46%; }
  .hero-center-card { position:relative; left:auto; top:auto; transform:none; order:-1; margin: 95px auto -64px; width: min(92%, 420px); }
  .hero-center-card .brand-script { font-size: 42px; }
  .panel-content.align-right { margin-left:0; color:#fff; }
  .two-column, .ip-feature, .character-layout { grid-template-columns: 1fr; }
  .tech-grid, .product-grid, .article-grid, .showcase-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; width: min(100% - 28px, 1180px); }
  .section-heading { align-items:start; flex-direction:column; }
  .blog-list a { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; width: min(100% - 28px, 1180px); }
  .footer-links { justify-content:flex-start; }
  .page-hero, .license-hero { min-height: 60vh; padding: 130px 24px 54px; }
  .detail-panels { grid-template-columns: 1fr; }
  .license-card { grid-template-columns: 1fr; }
  .license-actions { justify-content:flex-start; }
}

/* 2026-06 refinement: original wordmark asset + cleaner philosophy + safer Worlds crop */
.brand-script { display: none; }
.brand-logo {
  display: block;
  width: clamp(148px, 14vw, 210px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.2));
  animation: wordmarkHello .9s cubic-bezier(.22,1,.36,1) both;
}
.brand { min-width: clamp(170px, 16vw, 245px); padding: 6px 18px 6px 12px; }
.hero-logo-wordmark {
  display:block;
  width: min(360px, 88%);
  margin: 0 auto;
  height:auto;
  animation: wordmarkHello 1.05s .12s cubic-bezier(.22,1,.36,1) both;
}
@keyframes wordmarkHello {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-8px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}
.worlds-panel .panel-bg {
  background-size: cover, cover, auto 106%;
  background-position: center, center, 60% 40%;
}
.panel-content.align-right {
  padding-top: 92px;
  max-width: 500px;
}
.strategy-copy {
  grid-template-columns: 1.08fr 1fr;
  gap: min(8vw, 86px);
}
.strategy-copy .strategy-title {
  font-size: clamp(44px, 4.9vw, 64px);
  line-height: 1.06;
  letter-spacing: -.07em;
  text-wrap: balance;
  word-break: keep-all;
}
.strategy-copy p {
  max-width: 620px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.85;
  letter-spacing: .01em;
  color: rgba(67, 70, 82, .86);
}
.identity-tile {
  aspect-ratio: 4 / 3;
  display:grid;
  place-items:center;
  padding: 50px 34px;
  background: rgba(255,255,255,.92);
}
.identity-tile img { width: min(92%, 520px); height:auto; }
@media (max-width: 980px) {
  .brand-logo { width: 158px; }
  .hero-logo-wordmark { width: min(310px, 88%); }
  .worlds-panel .panel-bg { background-size: cover, cover, auto 102%; background-position: center, center, 58% 38%; }
  .panel-content.align-right { padding-top: 32px; }
  .strategy-copy .strategy-title { font-size: clamp(40px, 9vw, 58px); }
}

/* 2026-06 content polish: Compute tabs, character photo strip, safer hero crop, compact footer */
.content-switch {
  display: inline-flex;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(23,24,29,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 14px 42px rgba(20,24,33,.07);
  backdrop-filter: blur(18px) saturate(140%);
}
.content-tab {
  border: 0;
  background: transparent;
  color: rgba(23,24,29,.62);
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.content-tab:hover { color: var(--ink); transform: translateY(-1px); }
.content-tab.active { background: #17181d; color: #fff; box-shadow: 0 12px 30px rgba(23,24,29,.18); }
.content-panel { display: none; }
.content-panel.active { display: block; animation: tabFade .32s ease both; }
@keyframes tabFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sub-heading { margin: 8px 0 28px; }
.sub-heading h2 { font-size: clamp(36px, 5vw, 64px); }
.text-hint { color: var(--muted); font-weight: 760; font-size: 14px; }

.character-carousel { grid-template-columns: minmax(360px, 620px) 1fr; gap: min(6vw, 72px); }
.character-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(239,232,244,.72));
  box-shadow: var(--shadow);
}
.character-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 840px;
  object-fit: cover;
  object-position: center top;
  transition: opacity .24s ease, transform .42s ease;
}
.character-main-image.is-switching { opacity: .25; transform: scale(1.015); }
.photo-strip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px;
  max-width: calc(100% - 34px);
  overflow-x: auto;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 18px 54px rgba(20,24,33,.16);
  backdrop-filter: blur(20px) saturate(155%);
}
.photo-thumb {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  border: 0;
  padding: 4px;
  border-radius: 21px;
  background: rgba(255,255,255,.44);
  cursor: pointer;
  opacity: .74;
  transition: opacity .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.photo-thumb:hover { opacity: 1; transform: translateY(-2px); }
.photo-thumb.active { opacity: 1; background: #fff; box-shadow: 0 0 0 3px rgba(124,106,167,.24), 0 14px 34px rgba(20,24,33,.16); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 16px; }
.character-copy { position: relative; }
.character-copy::before {
  content: "";
  position: absolute;
  inset: -32px -24px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,106,167,.15), transparent 66%);
  pointer-events: none;
}
.character-copy p[data-character-body] { font-size: 18px; line-height: 1.9; }

/* move the Worlds background downward so the head is not trapped under the fixed nav */
.worlds-panel .panel-bg {
  background-size: cover, cover, auto 98%;
  background-position: center, center, 60% 56%;
}
.panel-content.align-right { padding-top: 118px; }
.worlds-page-hero { background-size: auto 95%; background-repeat: no-repeat; background-position: 73% 58%; }

.footer { grid-template-columns: 1fr auto; align-items: start; }
.footer-links a { padding: 12px 18px; font-weight: 850; }

.admin-callout {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 920px) {
  .compute-content-heading { align-items: start; }
  .content-switch { width: 100%; }
  .content-tab { flex: 1; text-align: center; }
  .character-carousel { grid-template-columns: 1fr; }
  .character-main-image { aspect-ratio: 4 / 5.25; }
  .photo-thumb { width: 62px; height: 62px; }
  .worlds-panel .panel-bg { background-size: cover, cover, auto 96%; background-position: center, center, 58% 55%; }
  .panel-content.align-right { padding-top: 48px; }
}


/* Public CMS-ready polish */
.compact-footer { grid-template-columns: 1fr auto; align-items: center; }
.compact-footer .fineprint { display: none; }
.devlog-hero { min-height: 54vh; }
.devlog-list { display: grid; gap: 14px; }
.devlog-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 16px 45px rgba(20,24,33,.06);
}
.devlog-item time, .devlog-item span { color: var(--violet); font-weight: 850; font-size: 13px; }
.devlog-item h3 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.04em; }
.devlog-item p { margin: 0; color: var(--muted); line-height: 1.75; }
@media (max-width: 760px) {
  .devlog-item { grid-template-columns: 1fr; }
  .compact-footer { grid-template-columns: 1fr; }
}
