:root {
  --ink: #101a3f;
  --muted: #5d6888;
  --line: rgba(37, 50, 97, 0.12);
  --blue: #3c8df6;
  --cyan: #19c4e6;
  --violet: #7059f1;
  --yellow: #ffd35c;
  --pink: #ff7bc1;
  --green: #6bd486;
  --paper: #f7faff;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 22px 70px rgba(35, 52, 105, 0.16);
  color-scheme: light;
  font-family: "Nunito", "Nunito Sans", ui-rounded, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(112, 89, 241, 0.08), transparent 30%),
    linear-gradient(180deg, #f7faff 0%, #edf5ff 48%, #f7faff 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(247, 250, 255, 0.76);
  backdrop-filter: blur(18px);
}

.nav-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, var(--yellow) 0 10%, transparent 11%),
    radial-gradient(circle at 32% 70%, #fff 0 10%, transparent 11%),
    linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 12px 30px rgba(91, 99, 232, 0.28);
  font-size: 24px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--ink);
}

.lang-pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.hero {
  position: relative;
}

.hero-rebuilt {
  min-height: 820px;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #071039;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 9, 38, 0.82) 0%, rgba(8, 18, 58, 0.68) 35%, rgba(8, 18, 58, 0.18) 68%, rgba(8, 18, 58, 0.32) 100%),
    linear-gradient(180deg, rgba(4, 9, 35, 0.18) 0%, rgba(4, 9, 35, 0.08) 42%, rgba(4, 9, 35, 0.62) 100%);
}

.hero-stack {
  position: relative;
  z-index: 2;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 46px;
  padding: 74px 0 48px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.section-kicker {
  border-color: rgba(61, 141, 246, 0.2);
  background: rgba(255, 255, 255, 0.74);
  color: #315aaf;
  width: fit-content;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 24px 0 20px;
  max-width: 720px;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
}

.lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(16, 26, 63, 0.2);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.hero-dock {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.hero-dock div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.hero-dock b {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-dock span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding-top: 70px;
}

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.product-title {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: end;
}

.section-title h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.section-title p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.product-grid-expanded {
  align-items: stretch;
}

.product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 44px rgba(40, 55, 103, 0.08);
}

.product-controls p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.product-card,
.world-card,
.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 18px 54px rgba(40, 55, 103, 0.1);
}

.portal-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 141, 246, 0.35);
  box-shadow: 0 24px 62px rgba(40, 55, 103, 0.16);
}

.portal-top {
  position: relative;
  min-height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 211, 92, 0.36), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(112, 89, 241, 0.22), transparent 26%),
    linear-gradient(135deg, #eef4ff, #cdefff);
}

.portal-top::after {
  content: "";
  position: absolute;
  inset: auto 22px 16px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(45, 64, 133, 0.16), transparent 66%);
}

.product-icon,
.portal-top img {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(33, 57, 118, 0.2);
}

.planet-icon {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 1000;
  box-shadow: 0 18px 42px rgba(40, 55, 103, 0.18);
}

.planet-icon::before {
  content: "";
  position: absolute;
  width: 128%;
  height: 32%;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.planet-icon.life { background: linear-gradient(135deg, var(--green), #3c8df6); }
.planet-icon.ai { background: linear-gradient(135deg, var(--violet), var(--cyan)); }
.planet-icon.art { background: linear-gradient(135deg, var(--pink), var(--violet)); }
.planet-icon.math { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.planet-icon.story { background: linear-gradient(135deg, #5267f7, #8ad8ff); }
.planet-icon.explore { background: linear-gradient(135deg, #70c872, #36b3ff); }
.planet-icon.habit { background: linear-gradient(135deg, #ffca5b, #ff82bd); }
.planet-icon.pet { background: linear-gradient(135deg, #8c6cf4, #ff8fd1); }
.planet-icon.science { background: linear-gradient(135deg, #00c7de, #5b75ff); }
.planet-icon.family { background: linear-gradient(135deg, #ffd166, #7ae582); }
.planet-icon.vault { background: linear-gradient(135deg, #10215f, #715cf6); }

.status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #42507d;
  font-size: 12px;
  font-weight: 1000;
}

.status.live,
.status.soft {
  color: #fff;
  background: linear-gradient(135deg, #42c979, #3c8df6);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-kicker {
  color: #315aaf;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 6px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.product-card p,
.world-card p {
  color: var(--muted);
}

.product-body p {
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  color: #31406f;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 900;
}

.concept-band {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 211, 92, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.88));
  box-shadow: var(--shadow);
}

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

.world-card {
  padding: 22px;
}

.world-card .mini {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #eef4ff;
  font-size: 20px;
  font-weight: 1000;
  color: #315aaf;
}

.cta-band {
  padding: 48px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 28%, rgba(255, 211, 92, 0.3), transparent 24%),
    radial-gradient(circle at 20% 90%, rgba(25, 196, 230, 0.25), transparent 28%),
    linear-gradient(135deg, #08133d, #1a42a6 52%, #6a5cf1);
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.product-hub {
  padding: 54px 0 88px;
}

.hub-hero {
  padding: 54px 0 40px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 0%, rgba(25, 196, 230, 0.34), transparent 26%),
    radial-gradient(circle at 14% 72%, rgba(255, 211, 92, 0.18), transparent 25%),
    linear-gradient(135deg, #07102e, #1c3e9d 56%, #7059f1);
}

.hub-hero .lead {
  max-width: 760px;
}

.hub-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(720px, 100%);
  margin-top: 34px;
}

.hub-summary-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(920px, 100%);
}

.hub-summary div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hub-summary b {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hub-summary span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.slot-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.slot-toolbar h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.slot-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.slot-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.product-controls .slot-pager {
  margin-bottom: 0;
  padding: 6px;
  border: 1px solid rgba(61, 141, 246, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 211, 92, 0.2), transparent 30%),
    rgba(247, 250, 255, 0.78);
}

.pager-pages {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pager-link,
.pager-static {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pager-link:hover {
  transform: translateY(-1px);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(40, 55, 103, 0.1);
}

.pager-page {
  width: 42px;
  padding: 0;
}

.pager-nav {
  min-width: 92px;
}

.pager-link.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 14px 32px rgba(61, 141, 246, 0.22);
}

.pager-static.disabled {
  opacity: 0.46;
}

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

.slot-card {
  position: relative;
  min-height: 250px;
  padding-top: 50px;
}

.slot-no {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(49, 90, 175, 0.64);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
}

.slot-card.live {
  border-color: rgba(61, 141, 246, 0.38);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 211, 92, 0.22), transparent 32%),
    var(--card);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hub-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 18px 54px rgba(40, 55, 103, 0.1);
}

.product-detail-shell {
  padding-top: 38px;
}

.patlock-hero {
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 84% 8%, rgba(25, 196, 230, 0.28), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(255, 211, 92, 0.16), transparent 24%),
    linear-gradient(135deg, #06102d, #17388f 46%, #7059f1 100%);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.keyword-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.keyword-cloud-deep {
  margin-top: 24px;
}

.keyword-cloud-deep .keyword-pill {
  transition: transform 160ms ease, background 160ms ease;
}

.keyword-cloud-deep .keyword-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.intro-grid,
.feature-grid,
.scenario-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.intro-grid,
.scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-card,
.feature-card {
  min-height: 100%;
}

.intro-card h3,
.feature-card h3,
.world-card h3 {
  margin-bottom: 10px;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(40, 55, 103, 0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #315aaf;
  font-size: 22px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 17px;
}

.faq-item a {
  color: #245cd4;
  font-weight: 900;
}

.guide-board {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 16%, rgba(112, 89, 241, 0.16), transparent 26%),
    radial-gradient(circle at 14% 86%, rgba(255, 211, 92, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 255, 0.92));
  box-shadow: var(--shadow);
}

.guide-teaser-grid,
.research-grid,
.selection-grid,
.answer-matrix {
  display: grid;
  gap: 18px;
}

.guide-teaser-grid,
.research-grid,
.answer-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.selection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-teaser,
.research-card,
.checklist-card,
.answer-card {
  min-height: 100%;
}

.guide-teaser h3,
.research-card h3,
.checklist-card h3,
.answer-card h3 {
  margin-bottom: 10px;
}

.button-dark {
  border-color: rgba(16, 26, 63, 0.08);
  background: rgba(8, 19, 61, 0.9);
}

.guide-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.guide-inline-links a {
  color: #245cd4;
  font-weight: 900;
}

.legal-shell {
  padding-top: 70px;
  padding-bottom: 88px;
}

.panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(40, 55, 103, 0.1);
}

.panel h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  color: var(--ink);
}

.panel h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
}

.panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.panel a {
  color: #245cd4;
  font-weight: 900;
}

.legal-meta {
  margin-bottom: 18px !important;
  color: #315aaf !important;
  font-weight: 900;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.answer-card a,
.research-card a,
.checklist-card a {
  color: #245cd4;
  font-weight: 900;
}

.support-band {
  position: relative;
  overflow: hidden;
}

.support-band::after {
  content: "";
  position: absolute;
  inset: auto -40px -52px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
}

.mini-products {
  align-items: stretch;
}

.hub-card h2 {
  margin-bottom: 8px;
}

.asset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer {
  padding: 44px 0 58px;
  color: rgba(255, 255, 255, 0.78);
  background: #07102e;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer a {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-rebuilt,
  .hero-stack {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 9, 38, 0.88), rgba(8, 18, 58, 0.38)),
      linear-gradient(180deg, rgba(4, 9, 35, 0.08), rgba(4, 9, 35, 0.72));
  }

  .product-title,
  .slot-toolbar,
  .hub-grid,
  .intro-grid,
  .scenario-grid,
  .guide-teaser-grid,
  .research-grid,
  .selection-grid,
  .answer-matrix,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .slot-grid,
  .world-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-summary-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .nav-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-rebuilt,
  .hero-stack {
    min-height: 700px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .hero-bg {
    object-position: 61% center;
  }

  .hero-dock,
  .hub-summary,
  .product-grid,
  .slot-grid,
  .world-grid,
  .feature-grid,
  .hub-summary-four {
    grid-template-columns: 1fr;
  }

  .hero-dock div {
    min-height: 78px;
  }

  .section,
  .section.compact {
    padding: 58px 0;
  }

  .concept-band,
  .cta-band,
  .guide-board,
  .panel {
    padding: 28px;
    border-radius: 26px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
