:root {
  --bg: #08080d;
  --bg-soft: #101017;
  --surface: rgba(18, 17, 24, 0.92);
  --surface-soft: rgba(18, 17, 24, 0.72);
  --ink: #f6edda;
  --muted: #b8b0a4;
  --gold: #d8b76e;
  --gold-light: #f0d99d;
  --plum: #b89ad7;
  --cyan: #8fd0d9;
  --line: rgba(216, 183, 110, 0.24);
  --line-strong: rgba(216, 183, 110, 0.52);
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg) url("./brand/arcane-frame-large.png") center top / cover fixed no-repeat;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav account";
  align-items: center;
  gap: 18px;
  padding: 10px max(18px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 13, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  grid-area: brand;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(216, 183, 110, 0.18);
  border-radius: 5px;
  object-fit: cover;
  object-position: center 38%;
}

.main-nav {
  grid-area: nav;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 9px 11px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(216, 183, 110, 0.09);
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 1px;
  background: var(--gold);
}

.account-button,
.button,
.preserved-content .wp-block-button__link,
.preserved-content input[type="submit"] {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--gold);
  color: #17120b !important;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.account-button {
  grid-area: account;
  justify-self: end;
}

.account-button:hover,
.button.primary:hover,
.preserved-content .wp-block-button__link:hover {
  background: var(--gold-light);
}

.button.ghost {
  border-color: rgba(184, 154, 215, 0.48);
  background: rgba(184, 154, 215, 0.12);
  color: var(--ink) !important;
}

.button.disabled {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted) !important;
  cursor: not-allowed;
}

.button.full {
  width: 100%;
}

.museum-nav {
  position: sticky;
  top: 68px;
  z-index: 25;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px max(18px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(143, 208, 217, 0.2);
  background: rgba(11, 13, 18, 0.9);
  backdrop-filter: blur(14px);
}

.museum-nav > span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.museum-nav div {
  min-width: 0;
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.museum-nav div::-webkit-scrollbar {
  display: none;
}

.museum-nav a {
  padding: 7px 9px;
  border-radius: 4px;
  color: #b7c6c9;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.museum-nav a:hover {
  color: #e7f7f8;
  background: rgba(143, 208, 217, 0.08);
}

.legacy-page,
.preserved-content,
.preserved-content > .entry-content {
  width: 100%;
  min-width: 0;
}

.preserved-content {
  overflow: clip;
}

.preserved-content .wp-block-cover {
  position: relative;
  min-height: auto !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 62px 20px 92px;
  isolation: isolate;
  background: #090910;
}

.preserved-content .wp-block-cover__image-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
}

.preserved-content .wp-block-cover__background {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.7;
}

.preserved-content .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.preserved-content :where(.alignwide) {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.preserved-content :where(.is-layout-flex, .wp-block-columns, .wp-block-buttons) {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.preserved-content .wp-block-columns {
  align-items: center;
  margin: 26px 0;
}

.preserved-content .wp-block-column {
  min-width: 0;
  flex: 1 1 280px;
}

.preserved-content .is-nowrap {
  flex-wrap: nowrap;
}

.preserved-content :where(.is-content-justification-center, .has-text-align-center) {
  justify-content: center;
  text-align: center;
}

.preserved-content .is-content-justification-space-between {
  justify-content: space-between;
}

.preserved-content :where(h1, h2, h3, h4, p) {
  margin-top: 0;
}

.preserved-content :where(h1, h2, h3, h4) {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.preserved-content h1 {
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.04;
}

.preserved-content h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.14;
}

.preserved-content h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.preserved-content :where(p, li, figcaption, td, th) {
  color: #d1cbc2;
  font-size: 17px;
}

.preserved-content p {
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
}

.preserved-content :where(ul, ol) {
  max-width: 820px;
  margin: 18px auto;
  padding-left: 24px;
}

.preserved-content li + li {
  margin-top: 8px;
}

.preserved-content :where(figure, .wp-block-image) {
  max-width: 100%;
  margin: 28px auto;
}

.preserved-content figure.aligncenter,
.preserved-content .wp-block-image.aligncenter {
  text-align: center;
}

.preserved-content :where(img, video) {
  height: auto;
  border-radius: 5px;
}

.preserved-content figure img {
  display: block;
  margin: 0 auto;
}

.preserved-content img.wp-image-65,
.preserved-content img.wp-image-64 {
  width: min(560px, 100%);
}

.preserved-content img.wp-image-30 {
  width: min(920px, 100%) !important;
}

.preserved-content .wp-block-buttons {
  align-items: center;
  justify-content: center;
  margin: 20px 0 36px;
}

.preserved-content .wp-block-button {
  margin: 0;
}

.preserved-content .wp-block-button__link {
  min-height: 40px;
  padding: 9px 14px;
  border-color: rgba(216, 183, 110, 0.42);
  background: rgba(11, 10, 14, 0.76);
  color: var(--gold-light) !important;
  font-size: 14px;
}

.preserved-content .wp-block-button__link:hover {
  color: #17120b !important;
}

.preserved-content .login-btn-fixed {
  display: none !important;
}

.mode-legacy.page-aetheros .wp-block-cover__inner-container > .wp-block-columns:first-of-type .wp-block-buttons,
.mode-legacy.page-comeco .wp-block-cover__inner-container > .wp-block-columns:first-of-type .wp-block-buttons,
.mode-legacy.page-sobre .wp-block-cover__inner-container > .wp-block-columns:first-of-type .wp-block-buttons,
.mode-legacy.page-eventos .wp-block-cover__inner-container > .wp-block-columns:first-of-type .wp-block-buttons,
.mode-legacy.page-faq .wp-block-cover__inner-container > .wp-block-columns:first-of-type .wp-block-buttons,
.mode-legacy.page-wiki .wp-block-cover__inner-container > .wp-block-buttons:first-of-type {
  display: none;
}

.raw-home .wp-block-cover {
  min-height: calc(100svh - 68px) !important;
  align-items: center;
}

.raw-home h1 {
  font-size: 72px;
}

.raw-home .wp-block-buttons {
  margin-top: 28px;
}

.raw-home .wp-block-button__link {
  min-height: 48px;
  padding: 12px 22px;
  background: rgba(10, 9, 14, 0.84);
  font-size: 16px;
}

.raw-page:not(.raw-home):not(.raw-loja) .wp-block-cover__inner-container > figure:first-of-type,
.raw-page:not(.raw-home):not(.raw-loja) .wp-block-cover__inner-container > .wp-block-columns:first-of-type {
  margin-top: 0;
}

.raw-comeco .wp-block-group:has(> h2.wp-block-heading),
.raw-faq .wp-block-group:has(> h2.wp-block-heading) {
  max-width: 920px;
  margin: 18px auto;
  padding: 24px;
  border: 1px solid rgba(143, 208, 217, 0.2);
  border-radius: 6px;
  background: rgba(7, 10, 16, 0.66);
}

.raw-eventos .ae-event-card,
.raw-eventos .ae-card,
.raw-eventos .event-card {
  border-color: rgba(216, 183, 110, 0.22) !important;
  border-radius: 6px !important;
  background: rgba(11, 10, 15, 0.78) !important;
}

.raw-wiki .wp-block-buttons {
  margin-bottom: 46px;
}

.raw-loja {
  min-height: 70vh;
  padding: 78px 20px 96px;
  background: rgba(8, 8, 13, 0.88);
}

.raw-loja > .entry-content {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.raw-loja .woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.raw-loja .woocommerce-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.raw-loja .wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.raw-loja .wc-block-product {
  min-width: 0;
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.raw-loja .wc-block-product > *:not(.wc-block-components-product-image) {
  margin-right: 18px;
  margin-left: 18px;
}

.raw-loja .wc-block-components-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 18px;
  overflow: hidden;
  background: #0c0c12;
}

.raw-loja .wc-block-components-product-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.raw-loja .wc-block-components-product-image img.is-fallback {
  object-fit: contain;
  padding: 18%;
}

.raw-loja .wp-block-post-title {
  min-height: 58px;
  margin-bottom: 8px;
  font-size: 22px !important;
}

.raw-loja .wp-block-post-title a {
  color: var(--ink);
  text-decoration: none;
}

.raw-loja .wc-block-components-product-price {
  color: var(--gold-light);
  font-weight: 800;
}

.raw-loja .wp-block-woocommerce-product-button {
  margin-top: auto !important;
  margin-bottom: 18px !important;
}

.raw-loja .wp-block-woocommerce-product-button .wp-block-button__link {
  width: 100%;
  background: var(--gold);
  color: #17120b !important;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.arcanum-page :where(h1, h2, h3, p),
.account-page :where(h1, h2, h3, p) {
  margin-top: 0;
}

.arcanum-page :where(h1, h2, h3),
.account-page :where(h1, h2, h3) {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

.arcanum-page h1,
.account-page h1 {
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 1;
}

.arcanum-page h2,
.account-page h2 {
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.08;
}

.arcanum-page h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lead,
.arcanum-page p,
.account-page p,
.form-intro {
  color: var(--muted);
  font-size: 18px;
}

.arcanum-hero {
  min-height: calc(100svh - 116px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 58px 20px 72px;
  text-align: center;
  background:
    linear-gradient(rgba(8, 8, 13, 0.34), rgba(8, 8, 13, 0.84)),
    url("./brand/arcane-frame-wide.png") center / cover no-repeat;
}

.arcanum-crest {
  width: min(270px, 60vw);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 183, 110, 0.2);
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.arcanum-copy {
  max-width: 880px;
}

.arcanum-copy .lead {
  max-width: 760px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.arcanum-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 52px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.arcanum-intro > p {
  margin-bottom: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: center;
}

.simple-panel,
.feature-list article,
.login-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.simple-panel {
  padding: 24px;
}

.launcher-panel > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.launcher-panel > div:first-child strong {
  color: var(--gold);
}

.mini-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  padding: 16px 0;
  border-block: 1px solid rgba(216, 183, 110, 0.16);
}

.mini-status span {
  color: var(--muted);
}

.mini-status strong {
  color: var(--gold-light);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-list article {
  min-height: 220px;
  padding: 22px;
}

.feature-list article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.feature-list article p {
  margin-bottom: 0;
  font-size: 15px;
}

.account-page {
  width: min(1040px, calc(100% - 40px));
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 450px);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 96px;
}

.account-intro img {
  width: 180px;
  margin-bottom: 26px;
  border: 1px solid rgba(216, 183, 110, 0.18);
  border-radius: 7px;
}

.account-intro p:last-child {
  max-width: 560px;
}

.login-panel {
  position: relative;
  padding: 28px;
}

.login-panel h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.form-intro {
  margin-bottom: 22px;
  font-size: 15px !important;
}

.login-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.login-panel input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 10px 12px;
  outline: none;
  background: #0a0a0f;
  color: var(--ink);
}

.login-panel input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 183, 110, 0.12);
}

.login-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px !important;
}

.login-message.error {
  color: #ffb4a8;
}

.login-message.success {
  color: #9ee1bf;
}

.login-links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  font-size: 13px;
}

.login-links a {
  color: var(--gold);
}

.login-modal {
  width: min(470px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
  color: var(--ink);
}

.login-modal::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(7px);
}

.modal-shell {
  position: relative;
}

.modal-form {
  background: rgba(14, 13, 19, 0.98);
}

.close-button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #111118;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 5px;
  object-fit: cover;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 17px;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.social-links a {
  padding: 7px 9px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--ink);
  background: rgba(216, 183, 110, 0.08);
}

.screen-reader-text,
.um_request_name {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

::selection {
  background: rgba(216, 183, 110, 0.3);
  color: #fff8e8;
}

:where(a, button, input):focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.page-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--plum), var(--cyan));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none;
}

.brand img,
.button,
.account-button,
.main-nav a,
.museum-nav a,
.social-links a,
.feature-list article,
.raw-loja .wc-block-product {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover img {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.button:hover,
.account-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.museum-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.museum-title small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #91aeb2;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.museum-title i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78d8b1;
  box-shadow: 0 0 0 3px rgba(120, 216, 177, 0.1);
}

.museum-nav a[aria-current="page"] {
  color: #e7f7f8;
  background: rgba(143, 208, 217, 0.12);
}

.raw-home .wp-block-cover {
  padding-top: 38px;
  padding-bottom: 54px;
}

.raw-home .wp-block-cover__inner-container {
  display: grid;
  justify-items: center;
}

.raw-home .wp-block-cover__inner-container > .wp-block-columns:first-child {
  order: 1;
  margin: 0 0 10px;
}

.raw-home .wp-block-cover__inner-container > .wp-block-columns:first-child img {
  width: min(360px, 68vw);
  opacity: 0.84;
}

.raw-home .wp-block-cover__inner-container > figure {
  order: 2;
  margin: 4px auto 12px;
}

.raw-home .wp-block-cover__inner-container > figure img {
  width: min(230px, 50vw) !important;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.raw-home .wp-block-cover__inner-container > h1 {
  order: 3;
  margin-bottom: 10px;
  font-size: 58px;
}

.raw-home .wp-block-cover__inner-container > .wp-block-group {
  order: 4;
}

.raw-home .wp-block-cover__inner-container > .wp-block-group:last-child {
  order: 7;
  margin-top: 18px;
}

.raw-home .wp-block-cover__inner-container > .wp-block-group:last-child img {
  width: min(300px, 70vw);
  opacity: 0.72;
}

.raw-home .wp-block-cover__inner-container > .wp-block-group p {
  margin-bottom: 6px;
}

.raw-home .wp-block-cover__inner-container > .wp-block-buttons {
  order: 5;
  width: min(530px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 12px;
}

.raw-home .wp-block-cover__inner-container > style {
  order: 6;
}

.raw-home .wp-block-button__link {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 14px 18px;
  text-align: left;
}

.raw-home .wp-block-button:first-child .wp-block-button__link {
  border-color: rgba(184, 154, 215, 0.54);
  background: rgba(36, 21, 53, 0.84) !important;
}

.raw-home .wp-block-button:last-child .wp-block-button__link {
  border-color: rgba(143, 208, 217, 0.5);
  background: rgba(21, 55, 66, 0.84) !important;
}

.raw-home .wp-block-button__link span {
  color: var(--ink);
  font-size: 18px;
}

.raw-home .wp-block-button__link small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.raw-home .wp-block-button__link:hover {
  color: var(--ink) !important;
  transform: translateY(-2px);
}

.mode-legacy:not(.page-home):not(.page-loja) .wp-block-cover__inner-container > .wp-block-columns:first-of-type img {
  width: min(360px, 68vw);
  opacity: 0.88;
}

.mode-legacy:not(.page-home):not(.page-loja) .preserved-content img.wp-image-30 {
  width: min(760px, 100%) !important;
}

.raw-sobre .wp-block-group:has(> h2.wp-block-heading) {
  max-width: 900px;
  margin: 20px auto;
  padding: 34px 0;
  border-top: 1px solid rgba(216, 183, 110, 0.2);
}

.raw-wiki .wp-block-cover__inner-container > .wp-block-buttons:not(:first-child) {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-right: auto;
  margin-left: auto;
}

.raw-wiki .wp-block-cover__inner-container > .wp-block-buttons:not(:first-child) .wp-block-button__link {
  width: 100%;
  min-height: 58px;
}

.raw-comeco .wp-block-group:has(> h2.wp-block-heading),
.raw-faq .wp-block-group:has(> h2.wp-block-heading) {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.raw-eventos :where(.ae-event-card, .ae-card, .event-card):hover {
  border-color: rgba(216, 183, 110, 0.44) !important;
  transform: translateY(-2px);
}

.raw-loja {
  padding: 0;
  background: rgba(8, 8, 13, 0.88);
}

.raw-loja > .entry-content {
  width: 100%;
}

.raw-loja .wp-block-cover {
  padding-top: 72px;
  padding-bottom: 96px;
}

.raw-loja .wc-block-product-template {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.raw-loja .wc-block-product {
  position: relative;
}

.raw-loja .wc-block-product::before {
  content: "Catálogo Codex";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(216, 183, 110, 0.34);
  border-radius: 4px;
  background: rgba(8, 8, 13, 0.82);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.raw-loja .wc-block-product:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.raw-loja .wc-block-components-product-image img {
  transition: transform 260ms ease;
}

.raw-loja .wc-block-product:hover .wc-block-components-product-image img {
  transform: scale(1.025);
}

.raw-loja .wc-block-components-product-image img.is-codex-placeholder {
  padding: 17%;
  background: #080a12;
  object-fit: contain;
}

.raw-loja .product-summary {
  min-height: 68px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.hero-status {
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px auto 0;
  border-block: 1px solid rgba(216, 183, 110, 0.2);
}

.hero-status > span {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 13px 18px;
}

.hero-status > span + span {
  border-left: 1px solid rgba(216, 183, 110, 0.18);
}

.hero-status small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-status strong {
  color: var(--gold-light);
  font-size: 13px;
}

.feature-list article:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.community-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
  border-block: 1px solid var(--line);
  background: rgba(16, 14, 20, 0.9);
}

.community-band > div {
  max-width: 760px;
}

.community-band h2 {
  margin-bottom: 12px;
}

.community-band p:last-child {
  margin-bottom: 0;
}

.account-points {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.account-points li {
  padding: 10px 0 10px 14px;
  border-left: 2px solid rgba(216, 183, 110, 0.42);
  color: #c9c1b5;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}

.social-links a {
  border: 1px solid transparent;
}

.social-links a:hover {
  border-color: var(--line);
}

.footer-year {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 183, 110, 0.1);
  color: rgba(184, 176, 164, 0.68);
  font-size: 11px;
}

@media (max-width: 980px) {
  body {
    background-attachment: scroll;
  }

  .arcanum-page h1,
  .account-page h1,
  .raw-home h1 {
    font-size: 56px;
  }

  .arcanum-page h2,
  .account-page h2 {
    font-size: 40px;
  }

  .preserved-content h1 {
    font-size: 48px;
  }

  .preserved-content h2 {
    font-size: 34px;
  }

  .arcanum-intro,
  .two-col,
  .account-page {
    grid-template-columns: 1fr;
  }

  .account-page {
    max-width: 720px;
    gap: 28px;
  }

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

  .raw-loja .wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand account"
      "nav nav";
    gap: 8px 12px;
    padding: 9px 14px;
  }

  .brand span {
    font-size: 15px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 7px 9px;
    font-size: 13px;
  }

  .museum-nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 8px 14px;
  }

  .museum-nav div {
    width: 100%;
  }

  .museum-title {
    width: 100%;
    justify-content: space-between;
  }

  .preserved-content .wp-block-cover {
    padding: 42px 15px 68px;
  }

  .preserved-content .is-nowrap {
    flex-wrap: wrap;
  }

  .preserved-content h1,
  .raw-home h1,
  .arcanum-page h1,
  .account-page h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .preserved-content h2,
  .arcanum-page h2,
  .account-page h2 {
    font-size: 31px;
  }

  .preserved-content h3 {
    font-size: 22px;
  }

  .preserved-content :where(p, li, figcaption, td, th),
  .lead,
  .arcanum-page p,
  .account-page p {
    font-size: 16px;
  }

  .raw-home .wp-block-cover {
    min-height: auto !important;
  }

  .raw-home .wp-block-cover__inner-container > h1 {
    font-size: 42px;
  }

  .raw-home .wp-block-cover__inner-container > .wp-block-buttons {
    grid-template-columns: 1fr;
    width: min(340px, 100%);
  }

  .raw-wiki .wp-block-cover__inner-container > .wp-block-buttons:not(:first-child) {
    grid-template-columns: 1fr;
  }

  .raw-loja {
    padding: 0;
  }

  .raw-loja .wc-block-product-template,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .arcanum-hero {
    min-height: auto;
    padding: 44px 18px 64px;
  }

  .hero-status {
    grid-template-columns: 1fr;
    width: min(340px, 100%);
  }

  .hero-status > span + span {
    border-top: 1px solid rgba(216, 183, 110, 0.18);
    border-left: 0;
  }

  .community-band {
    padding: 58px 15px;
  }

  .community-band .button {
    width: 100%;
  }

  .arcanum-crest {
    width: min(220px, 64vw);
  }

  .section {
    width: min(100% - 30px, 1120px);
    padding: 64px 0;
  }

  .feature-list article {
    min-height: 170px;
  }

  .account-page {
    width: min(100% - 30px, 720px);
    padding: 48px 0 72px;
  }

  .account-intro img {
    width: 140px;
  }

  .site-footer {
    width: min(100% - 30px, 1240px);
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-year {
    grid-column: auto;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  .account-button {
    min-height: 38px;
    padding: 8px 13px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .login-panel {
    padding: 24px 18px;
  }

  .login-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Codex Studio 2026 total rework */
:root {
  --bg: #07070b;
  --bg-deep: #040407;
  --bg-soft: #0e0e14;
  --surface: #121218;
  --surface-soft: rgba(18, 18, 24, 0.84);
  --ink: #f5efe4;
  --muted: #a9a4a0;
  --gold: #d3ad63;
  --gold-light: #f0d7a0;
  --violet: #9f72d5;
  --plum: #c7a7de;
  --cyan: #80c6cc;
  --line: rgba(240, 215, 160, 0.16);
  --line-strong: rgba(240, 215, 160, 0.42);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --header-height: 76px;
  --container: 1240px;
}

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--body);
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.018) 50%, transparent 100%),
    url("./brand/arcane-frame-large.png") center top / cover fixed no-repeat;
  opacity: 0.18;
}

::selection {
  background: rgba(159, 114, 213, 0.42);
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--gold-light);
  color: #17100a;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

[data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 1.8;
}

:where(.home-page, .arcanum-page, .museum-page, .store-page) :where(h1, h2, h3, p) {
  margin-top: 0;
}

:where(.home-page, .arcanum-page, .museum-page, .store-page) :where(h1, h2, h3) {
  font-family: var(--display);
  letter-spacing: 0;
}

:where(.home-page, .arcanum-page, .museum-page, .store-page) h1 {
  font-size: 84px;
  line-height: 0.88;
}

:where(.home-page, .arcanum-page, .museum-page, .store-page) h2 {
  font-size: 60px;
  line-height: 0.98;
}

:where(.home-page, .arcanum-page, .museum-page, .store-page) h3 {
  font-size: 28px;
  line-height: 1.08;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  min-height: 46px;
  gap: 9px;
  border-radius: 5px;
  padding: 11px 18px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover:not(.disabled) {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: #17100a !important;
}

.button.ghost {
  border-color: rgba(245, 239, 228, 0.26);
  background: rgba(8, 8, 12, 0.48);
  color: var(--ink) !important;
  backdrop-filter: blur(12px);
}

.site-header {
  min-height: var(--header-height);
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav actions";
  gap: 24px;
  padding: 9px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom-color: rgba(240, 215, 160, 0.12);
  background: rgba(6, 6, 10, 0.82);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px) saturate(1.2);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(5, 5, 8, 0.94);
}

.brand {
  gap: 12px;
  font-size: inherit;
  text-transform: none;
}

.brand img {
  width: 42px;
  height: 48px;
  flex-basis: 42px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.brand > span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  gap: 2px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 9px 13px;
  color: #a9a4a0;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: rgba(240, 215, 160, 0.15);
  background: rgba(240, 215, 160, 0.06);
}

.main-nav a[aria-current="page"]::after {
  right: 13px;
  bottom: 5px;
  left: 13px;
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: rgba(240, 215, 160, 0.08);
  color: var(--gold-light);
}

.account-button {
  grid-area: auto;
  min-height: 40px;
  gap: 8px;
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 12px;
}

.menu-button {
  display: none;
}

.page-progress {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
}

.home-section,
.arcanum-system-section,
.launcher-release-section,
.arcanum-overview,
.arcanum-feature-grid {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.studio-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 76px 24px 108px;
  border-bottom: 1px solid var(--line);
  background: #080810;
}

.studio-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.2), rgba(5, 5, 8, 0.86)),
    url("./brand/arcane-frame-wide.png") center / cover no-repeat;
  transform: scale(1.025);
}

.studio-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 14, 0.72), transparent 28%, transparent 72%, rgba(8, 8, 14, 0.72));
}

.studio-frame {
  display: none;
}

.studio-hero-copy {
  width: min(720px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.studio-mark {
  width: 140px;
  height: 160px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: top;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.36));
}

.studio-hero h1 {
  margin-bottom: 22px;
  color: #fffaf0;
  font-size: 108px;
}

.studio-hero .lead {
  max-width: 670px;
  margin-bottom: 28px;
  color: #c4bdb3;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.studio-status {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 9, 0.72);
  backdrop-filter: blur(14px);
}

.studio-status > span {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 9px;
  padding: 15px 28px;
  text-align: center;
}

.studio-status > span + span {
  border-left: 1px solid var(--line);
}

.studio-status b,
.world-state b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fd6a5;
  box-shadow: 0 0 0 4px rgba(127, 214, 165, 0.1);
}

.studio-status small {
  grid-column: 2;
  color: #8e8984;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-status strong {
  grid-column: 2;
  color: #ddd3c4;
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  right: 26px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.world-section {
  padding-block: 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 630px;
  border: 1px solid var(--line);
  background: #0a0a0f;
}

.world-panel {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 38px;
  color: #fff;
  text-decoration: none;
}

.world-panel + .world-panel {
  border-left: 1px solid var(--line);
}

.world-panel > img:first-of-type {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.world-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 5, 8, 0.94) 100%);
}

.world-panel:hover > img:first-of-type {
  transform: scale(1.035);
}

.world-panel > div:last-child {
  max-width: 520px;
  transform: translateY(8px);
  transition: transform 300ms ease;
}

.world-panel:hover > div:last-child {
  transform: translateY(0);
}

.world-panel small {
  color: #c9c0b5;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.world-panel h3 {
  margin: 6px 0 10px;
  font-size: 48px;
}

.world-panel p {
  max-width: 460px;
  margin-bottom: 20px;
  color: #c9c3bd;
  font-size: 13px;
  line-height: 1.7;
}

.world-panel strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 12px;
}

.world-state {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(240, 215, 160, 0.26);
  border-radius: 3px;
  background: rgba(5, 5, 9, 0.66);
  color: #f5efe4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.world-state.archived {
  color: #d3ebed;
}

.world-state.archived [data-lucide] {
  width: 14px;
  height: 14px;
}

.world-aetheros {
  background: #07131a;
}

.world-aetheros > img:first-of-type {
  z-index: -1;
  inset: 13% 7% auto;
  width: 86%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 50px rgba(76, 197, 226, 0.12));
}

.aetheros-atmosphere {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 57, 75, 0.68), rgba(20, 8, 34, 0.7)),
    url("../../wp-content/uploads/2026/02/download-1.jpg") center / cover no-repeat;
  opacity: 0.86;
}

.studio-manifesto {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 48px;
  padding-block: 100px;
  border-block: 1px solid var(--line);
}

.manifesto-index {
  color: var(--gold);
  font-family: var(--display);
  font-size: 20px;
}

.studio-manifesto h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.studio-manifesto > p {
  align-self: end;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.capability-section {
  padding-block: 116px;
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.capability-rail article {
  min-height: 270px;
  display: grid;
  align-content: start;
  padding: 30px 28px;
}

.capability-rail article + article {
  border-left: 1px solid var(--line);
}

.capability-rail article > [data-lucide] {
  width: 24px;
  height: 24px;
  margin-bottom: 44px;
  color: var(--violet);
}

.capability-rail article > span {
  color: #77716d;
  font-size: 10px;
  font-weight: 800;
}

.capability-rail h3 {
  margin: 7px 0 12px;
  font-size: 30px;
}

.capability-rail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.home-community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  margin-bottom: 100px;
  padding: 66px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(15, 12, 20, 0.98), rgba(9, 14, 18, 0.94)),
    url("./brand/arcane-frame-wide.png") center / cover no-repeat;
}

.home-community h2 {
  max-width: 760px;
  margin-bottom: 15px;
}

.home-community p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.home-community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.arcanum-hero-v2 {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 80px max(24px, calc((100vw - var(--container)) / 2)) 132px;
  background: #08080d;
}

.arcanum-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.arcanum-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 8, 0.91) 0%, rgba(4, 4, 8, 0.42) 42%, rgba(4, 4, 8, 0.05) 70%),
    linear-gradient(180deg, rgba(4, 4, 8, 0.1) 45%, rgba(4, 4, 8, 0.94) 100%);
}

.arcanum-hero-copy {
  width: min(540px, 100%);
}

.arcanum-hero-copy .world-state {
  position: static;
  width: max-content;
  margin-bottom: 18px;
}

.arcanum-hero-v2 h1 {
  margin-bottom: 22px;
  font-size: 100px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.arcanum-hero-copy > p {
  margin-bottom: 26px;
  color: #d2cbc5;
  font-size: 16px;
  line-height: 1.8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.arcanum-hero-copy .hero-actions {
  justify-content: flex-start;
}

.arcanum-hero-meta {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(240, 215, 160, 0.2);
}

.arcanum-hero-meta span {
  display: grid;
  gap: 3px;
  padding: 13px 18px;
}

.arcanum-hero-meta span + span {
  border-left: 1px solid rgba(240, 215, 160, 0.16);
}

.arcanum-hero-meta small {
  color: #9f9892;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.arcanum-hero-meta strong {
  color: var(--gold-light);
  font-size: 12px;
}

.arcanum-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.5fr 0.5fr;
  gap: 48px;
  padding-block: 110px;
  border-bottom: 1px solid var(--line);
}

.overview-lead h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.overview-lead > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.overview-stat {
  align-self: end;
  display: grid;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.overview-stat strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 62px;
  line-height: 1;
}

.overview-stat span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.arcanum-system-section {
  padding-block: 116px;
}

.system-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-bottom: 0;
}

.system-tabs button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #0b0b10;
  color: #8f8a85;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.system-tabs button + button {
  border-left: 1px solid var(--line);
}

.system-tabs button:hover {
  color: #dcd4c9;
}

.system-tabs button[aria-selected="true"] {
  border-bottom-color: var(--violet);
  background: rgba(159, 114, 213, 0.09);
  color: #eee2fa;
}

.system-stage {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  border-top: 0;
  background: #0b0b10;
}

.system-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0a0710;
}

.system-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 8, 0.66));
}

.system-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: opacity 220ms ease, transform 520ms ease;
}

.system-copy {
  align-self: center;
  max-width: 620px;
  padding: 68px;
}

.system-copy > span {
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-copy h3 {
  margin: 10px 0 18px;
  font-size: 52px;
}

.system-copy > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.system-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #d2cbc2;
  font-size: 12px;
  list-style: none;
}

.system-copy li {
  padding: 9px 0 9px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.system-copy li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: var(--gold);
}

.arcanum-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  margin-bottom: 116px;
}

.arcanum-feature-grid article {
  min-height: 300px;
  padding: 38px;
}

.arcanum-feature-grid article + article {
  border-left: 1px solid var(--line);
}

.arcanum-feature-grid .feature-primary {
  grid-column: 1 / -1;
  min-height: 490px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(159, 114, 213, 0.08), rgba(128, 198, 204, 0.035));
}

.feature-primary h2 {
  max-width: 710px;
  margin-bottom: 22px;
}

.feature-primary p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.forge-orbit {
  position: relative;
  aspect-ratio: 1;
  width: min(390px, 100%);
  justify-self: center;
  border: 1px solid rgba(159, 114, 213, 0.34);
  border-radius: 50%;
}

.forge-orbit::before,
.forge-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 215, 160, 0.15);
  border-radius: 50%;
}

.forge-orbit::before {
  inset: 14%;
}

.forge-orbit::after {
  inset: 34%;
  background: url("./worlds/arcanum-wordmark.png") center / cover;
}

.forge-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #0c0b11;
  color: #d8d0c7;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  transform: rotate(calc(var(--i) * 90deg)) translateX(164px) rotate(calc(var(--i) * -90deg)) translate(-50%, -50%);
}

.arcanum-feature-grid > article:not(.feature-primary) > [data-lucide] {
  width: 24px;
  height: 24px;
  margin-bottom: 50px;
  color: var(--gold);
}

.arcanum-feature-grid > article:not(.feature-primary) small {
  display: block;
  color: #77716d;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.arcanum-feature-grid > article:not(.feature-primary) h3 {
  margin: 8px 0 12px;
}

.arcanum-feature-grid > article:not(.feature-primary) p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.academy-feature {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 80px max(24px, calc((100vw - var(--container)) / 2));
  border-block: 1px solid rgba(240, 215, 160, 0.24);
}

.academy-feature > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.academy-feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 5, 8, 0.95) 100%);
}

.academy-copy {
  max-width: 680px;
}

.academy-copy h2 {
  margin-bottom: 18px;
}

.academy-copy p {
  margin-bottom: 22px;
  color: #c7c2bb;
  line-height: 1.8;
}

.locked-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(240, 215, 160, 0.26);
  border-radius: 3px;
  background: rgba(5, 5, 8, 0.64);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.launcher-release-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
  padding-block: 120px;
}

.launcher-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
}

.launcher-copy > p {
  max-width: 690px;
  color: var(--muted);
  line-height: 1.85;
}

.release-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.release-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #c9c1b8;
  font-size: 10px;
  font-weight: 700;
}

.release-points [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--violet);
}

.launcher-terminal {
  border: 1px solid var(--line-strong);
  background: #09090e;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.terminal-head {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.terminal-head > span {
  display: flex;
  gap: 6px;
}

.terminal-head b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #695d59;
}

.terminal-head b:nth-child(2) {
  background: #8a744f;
}

.terminal-head b:nth-child(3) {
  background: #4f765f;
}

.terminal-head small {
  color: #7f7974;
  font-size: 9px;
  text-transform: uppercase;
}

.terminal-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  padding: 14px 20px 22px;
}

.terminal-body span,
.terminal-body strong {
  padding-block: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
}

.terminal-body span {
  color: #77716d;
}

.terminal-body strong {
  color: #d8d0c5;
}

.launcher-terminal .button {
  width: 100%;
  margin: 0;
}

.launcher-download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.launcher-terminal .launcher-download-actions {
  margin: 0 20px 20px;
}

.download-callout .launcher-download-actions {
  width: min(100%, 520px);
}

@media (max-width: 560px) {
  .launcher-download-actions {
    grid-template-columns: 1fr;
  }
}

.arcanum-community-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  padding: 90px max(24px, calc((100vw - var(--container)) / 2));
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #0c0911, #071013);
}

.arcanum-community-band h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.arcanum-community-band p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.museum-nav {
  top: var(--header-height);
  min-height: 54px;
  padding: 6px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom-color: rgba(128, 198, 204, 0.16);
  background: rgba(6, 11, 14, 0.92);
}

.museum-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d5edef !important;
  text-decoration: none;
}

.museum-title > [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.museum-title > span {
  display: grid;
  color: #d5edef;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.05;
}

.museum-title small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7f9a9c;
  font-family: var(--body);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.museum-title b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #79cfaa;
}

.museum-nav div {
  gap: 1px;
}

.museum-nav div a {
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 8px 10px;
  color: #8fa7a9;
  font-size: 10px;
}

.museum-nav div a:hover,
.museum-nav div a[aria-current="page"] {
  border-color: rgba(128, 198, 204, 0.14);
  background: rgba(128, 198, 204, 0.07);
  color: #d5edef;
}

.museum-page {
  background: #071014;
}

.museum-page-hero {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: 82px max(24px, calc((100vw - 1060px) / 2)) 58px;
  border-bottom: 1px solid rgba(128, 198, 204, 0.18);
  background:
    linear-gradient(90deg, rgba(8, 20, 25, 0.97), rgba(16, 9, 23, 0.88)),
    url("./brand/arcane-frame-wide.png") center / cover no-repeat;
}

.museum-page-hero-main {
  min-height: 600px;
}

.museum-hero-copy {
  max-width: 800px;
}

.museum-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.museum-kicker [data-lucide] {
  width: 14px;
  height: 14px;
}

.museum-hero-copy > img {
  width: min(620px, 100%);
  margin: 4px 0 16px;
  filter: drop-shadow(0 24px 50px rgba(69, 173, 199, 0.16));
}

.museum-page-hero h1 {
  max-width: 790px;
  margin-bottom: 18px;
  color: #e8f4f2;
  font-size: 82px;
}

.museum-page-hero-main h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.museum-page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: #a8bbba;
  font-size: 14px;
  line-height: 1.85;
}

.museum-seal {
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(128, 198, 204, 0.32);
  border-radius: 50%;
  color: #c7e5e5;
  text-align: center;
}

.museum-seal span,
.museum-seal small {
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.museum-seal strong {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.museum-preservation-note {
  width: min(100% - 40px, 1060px);
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 26px auto;
  padding: 14px 16px;
  border: 1px solid rgba(128, 198, 204, 0.18);
  background: rgba(128, 198, 204, 0.04);
  color: #9db0b0;
}

.museum-preservation-note [data-lucide] {
  color: var(--cyan);
}

.museum-preservation-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}

.museum-preservation-note strong {
  color: #d3e8e7;
}

.museum-page .preserved-content {
  background: #071014;
}

.museum-page .preserved-content .wp-block-cover {
  padding-top: 44px;
}

.museum-page .preserved-content .wp-block-cover__image-background {
  opacity: 0.28 !important;
  filter: saturate(0.72) contrast(1.08);
}

.museum-page .preserved-content .wp-block-cover::after {
  background: linear-gradient(180deg, rgba(7, 16, 20, 0.62), rgba(7, 16, 20, 0.94)) !important;
}

.museum-page .preserved-content :where(h1, h2, h3) {
  color: #e8f3ef;
}

.museum-page .preserved-content .wp-block-button__link {
  border-color: rgba(128, 198, 204, 0.36);
  background: #c6e2df;
  color: #071014 !important;
}

.museum-page .raw-comeco .wp-block-group:has(> h2.wp-block-heading),
.museum-page .raw-faq .wp-block-group:has(> h2.wp-block-heading),
.museum-page .raw-sobre .wp-block-group:has(> h2.wp-block-heading) {
  border-color: rgba(128, 198, 204, 0.2);
  background: rgba(10, 22, 27, 0.84);
  box-shadow: none;
}

.museum-page .raw-eventos :where(.ae-event-card, .ae-card, .event-card) {
  border-color: rgba(128, 198, 204, 0.18) !important;
  background: rgba(9, 20, 24, 0.84) !important;
}

.store-page {
  background: #09090d;
}

.store-hero-v2 {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 80px max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(95deg, rgba(17, 11, 20, 0.98), rgba(7, 13, 17, 0.92)),
    url("./brand/arcane-frame-wide.png") center / cover;
}

.store-hero-copy h1 {
  margin-bottom: 20px;
}

.store-hero-copy > p {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.store-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #c7c0b7;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.store-trust [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.store-hero-art {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.store-hero-art::before,
.store-hero-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(159, 114, 213, 0.22);
  border-radius: 50%;
}

.store-hero-art::before {
  inset: 1%;
}

.store-hero-art::after {
  inset: 13%;
  border-color: rgba(240, 215, 160, 0.16);
}

.store-hero-art img {
  position: relative;
  z-index: 1;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.55));
}

.store-hero-art span {
  position: absolute;
  z-index: 2;
  bottom: 4px;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  background: #0b0910;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.store-shell {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding-block: 56px 110px;
}

.store-toolbar {
  position: sticky;
  z-index: 18;
  top: calc(var(--header-height) + 10px);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 76px;
  padding: 11px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 14, 0.9);
  backdrop-filter: blur(18px);
}

.store-search {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #07070b;
  color: #77716d;
}

.store-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.store-filters {
  display: flex;
  gap: 2px;
}

.store-filters button,
.favorites-filter {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 8px 12px;
  background: transparent;
  color: #8f8984;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.store-filters button:hover,
.store-filters button.active,
.favorites-filter:hover,
.favorites-filter[aria-pressed="true"] {
  border-color: var(--line);
  background: rgba(240, 215, 160, 0.06);
  color: var(--gold-light);
}

.favorites-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.favorites-filter [data-lucide] {
  width: 15px;
  height: 15px;
}

.store-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.store-section-title h2 {
  margin-bottom: 0;
  font-size: 48px;
}

.store-section-title > span {
  color: #7f7974;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.store-live-section {
  margin-bottom: 110px;
}

.store-live-products.raw-loja {
  padding: 0;
  background: transparent;
}

.store-live-products > .entry-content > :not(.wp-block-cover) {
  display: none;
}

.store-live-products .wp-block-cover {
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent;
}

.store-live-products .wp-block-cover__background,
.store-live-products .wp-block-cover__image-background,
.store-live-products .woocommerce-breadcrumb,
.store-live-products h1 {
  display: none !important;
}

.store-live-products .wp-block-cover__inner-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.store-live-products .wp-block-cover__inner-container > :not(.wp-block-woocommerce-product-collection) {
  display: none !important;
}

.store-live-products .wc-block-product-template {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.store-live-products .wc-block-product {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #0d0d12;
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.store-live-products .wc-block-product::before {
  content: attr(data-product-label);
  top: 10px;
  left: 10px;
  border-radius: 3px;
}

.store-live-products .wc-block-product:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: none;
}

.store-live-products .wc-block-components-product-image {
  height: 250px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #08080c;
}

.store-live-products .wc-block-components-product-image img {
  height: 100%;
  object-fit: cover;
}

.store-live-products .wc-block-product > *:not(.wc-block-components-product-image) {
  width: calc(100% - 38px);
  margin-right: 19px;
  margin-left: 19px;
  text-align: left;
}

.store-live-products .wp-block-post-title {
  margin-top: 21px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.05;
}

.store-live-products .wc-block-components-product-price {
  color: var(--gold-light);
  font-size: 14px;
  text-align: left;
}

.store-live-products .product-summary {
  min-height: 76px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
  text-align: left;
}

.store-live-products .live-product-actions {
  display: flex;
  gap: 7px;
  margin-bottom: 9px;
}

.store-live-products .live-product-actions .product-detail-button {
  min-width: 0;
}

.store-live-products .live-product-actions .favorite-button {
  flex: 0 0 40px;
}

.store-live-products .wp-block-woocommerce-product-button {
  margin-top: auto;
  margin-bottom: 18px;
}

.store-live-products .wp-block-woocommerce-product-button .wp-block-button__link {
  width: 100%;
  border-radius: 3px;
  background: var(--gold-light);
  font-size: 11px;
}

.upcoming-store-section {
  margin-bottom: 110px;
}

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

.future-product {
  min-width: 0;
  border: 1px solid var(--line);
  background: #0d0d12;
  transition: border-color 180ms ease, transform 180ms ease;
}

.future-product:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.future-product-media {
  position: relative;
  aspect-ratio: 1.3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #08080c;
}

.future-product-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  padding: 9%;
  transition: transform 350ms ease;
}

.future-product:hover .future-product-media img {
  transform: scale(1.035);
}

.future-product-media > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(159, 114, 213, 0.4);
  border-radius: 3px;
  background: rgba(10, 7, 14, 0.84);
  color: #d8b9f0;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-product-copy {
  padding: 23px;
}

.future-product-copy > small {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-product-copy h3 {
  margin: 7px 0 11px;
  font-size: 26px;
}

.future-product-copy p {
  min-height: 68px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.future-product-copy > div {
  display: flex;
  gap: 7px;
}

.product-detail-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(240, 215, 160, 0.05);
  color: #d7d0c7;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.favorite-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: #817b76;
  cursor: pointer;
}

.favorite-button.is-favorite {
  border-color: rgba(202, 106, 137, 0.45);
  color: #e38da9;
}

.favorite-button.is-favorite svg {
  fill: currentColor;
}

[data-store-item].is-filtered {
  display: none !important;
}

.store-how {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding-block: 78px;
  border-block: 1px solid var(--line);
}

.store-how h2 {
  margin-bottom: 0;
  font-size: 52px;
}

.store-how ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-how li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.store-how li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.store-how li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 18px;
}

.store-how h3 {
  margin-bottom: 7px;
  font-size: 24px;
}

.store-how li p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.store-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 46px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: #0c0c11;
}

.store-support > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-support > div > [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.store-support span {
  display: grid;
}

.store-support strong {
  font-family: var(--display);
  font-size: 21px;
}

.store-support small {
  color: var(--muted);
  font-size: 10px;
}

.product-modal {
  width: min(860px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0;
  background: #0b0b10;
  color: var(--ink);
}

.product-modal[open] {
  display: grid;
}

.product-modal::backdrop {
  background: rgba(3, 3, 6, 0.84);
  backdrop-filter: blur(10px);
}

.product-modal > .close-button {
  z-index: 3;
  top: 12px;
  right: 12px;
}

.product-modal-media {
  min-height: 480px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #08080c;
}

.product-modal-media img {
  width: 78%;
  max-height: 380px;
  object-fit: contain;
}

.product-modal-copy {
  align-self: center;
  padding: 50px;
}

.product-modal-copy > span {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-modal-copy h2 {
  margin: 9px 0 17px;
  font-size: 46px;
}

.product-modal-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.product-modal-copy > strong {
  display: block;
  margin: 26px 0 18px;
  color: var(--gold-light);
  font-size: 11px;
  text-transform: uppercase;
}

.search-modal {
  width: min(680px, calc(100% - 28px));
  max-height: min(720px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0;
  background: #0b0b10;
  color: var(--ink);
}

.search-modal::backdrop,
.login-modal::backdrop {
  background: rgba(3, 3, 6, 0.82);
  backdrop-filter: blur(10px);
}

.search-shell > label {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.search-shell > label > [data-lucide] {
  color: var(--gold);
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.search-shell label button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: #8f8984;
  cursor: pointer;
}

.search-results {
  max-height: 520px;
  display: grid;
  gap: 2px;
  overflow-y: auto;
  padding: 10px;
}

.search-results a {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  color: var(--ink);
  text-decoration: none;
}

.search-results a:hover,
.search-results a:focus-visible {
  border-color: var(--line);
  background: rgba(240, 215, 160, 0.05);
  outline: 0;
}

.search-results a > [data-lucide] {
  color: var(--gold);
}

.search-results a > [data-lucide]:last-child {
  width: 14px;
  height: 14px;
  color: #6f6a66;
}

.search-results a span {
  display: grid;
}

.search-results a strong {
  font-family: var(--display);
  font-size: 18px;
}

.search-results a small {
  color: var(--muted);
  font-size: 9px;
}

.search-results a.is-hidden {
  display: none;
}

.search-empty {
  display: none;
  margin: 0;
  padding: 30px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.search-empty.is-visible {
  display: block;
}

.login-modal {
  border-radius: 0;
  background: #0b0b10;
}

.login-panel {
  border-radius: 0;
  background:
    linear-gradient(140deg, rgba(159, 114, 213, 0.08), transparent 45%),
    #0c0c12;
}

.login-panel h2 {
  font-family: var(--display);
  font-size: 40px;
}

.login-panel input {
  border-radius: 3px;
  background: #08080c;
}

.account-page {
  width: min(100% - 40px, 1060px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 70px;
  padding: 90px 0 110px;
}

.account-intro {
  justify-items: start;
  text-align: left;
}

.account-intro img {
  width: 170px;
  height: 200px;
  object-fit: contain;
  object-position: top;
}

.account-intro h1 {
  font-size: 80px;
}

.account-points {
  width: 100%;
}

.account-surface {
  border: 1px solid var(--line);
  background: #0c0c12;
}

.not-found-page {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 72px 20px;
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.5), rgba(7, 7, 11, 0.96)),
    url("./brand/arcane-frame-wide.png") center / cover no-repeat;
  text-align: center;
}

.not-found-page > img {
  width: 130px;
  height: 150px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: top;
}

.not-found-page h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 76px;
  line-height: 0.95;
}

.not-found-page > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
}

.site-footer {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: #060609;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.7fr;
  gap: 70px;
  padding-block: 60px;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand img {
  width: 66px;
  height: 82px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: top;
}

.footer-brand > div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 26px;
}

.footer-brand span {
  color: var(--gold-light);
  font-size: 10px;
}

.footer-brand p {
  max-width: 300px;
  margin: 14px 0 0;
  color: #77716d;
  font-size: 10px;
  line-height: 1.7;
}

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

.footer-nav > div,
.footer-social {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav strong,
.footer-social > strong {
  margin-bottom: 10px;
  color: #d4cdc4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  color: #817b76;
  font-size: 10px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0;
  color: #aaa39c;
}

.social-links a:hover {
  border-color: var(--line-strong);
  color: var(--gold-light);
}

.social-links [data-lucide] {
  width: 16px;
  height: 16px;
}

.footer-social p {
  max-width: 260px;
  margin: 8px 0 0;
  color: #6f6a66;
  font-size: 9px;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #615d59;
  font-size: 8px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .main-nav a {
    padding-inline: 9px;
  }

  .main-nav a [data-lucide] {
    display: none;
  }

  .world-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .studio-manifesto {
    grid-template-columns: 60px 1fr;
  }

  .studio-manifesto > p {
    grid-column: 2;
  }

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

  .capability-rail article:nth-child(3) {
    border-left: 0;
  }

  .capability-rail article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .arcanum-overview {
    grid-template-columns: 1fr 0.5fr 0.5fr;
  }

  .system-copy {
    padding: 48px;
  }

  .arcanum-feature-grid .feature-primary {
    grid-template-columns: 1fr 0.7fr;
  }

  .forge-orbit span {
    transform: rotate(calc(var(--i) * 90deg)) translateX(132px) rotate(calc(var(--i) * -90deg)) translate(-50%, -50%);
  }

  .store-live-products .wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  :where(.home-page, .arcanum-page, .museum-page, .store-page) h1 {
    font-size: 68px;
  }

  :where(.home-page, .arcanum-page, .museum-page, .store-page) h2 {
    font-size: 50px;
  }

  .studio-hero h1 {
    font-size: 84px;
  }

  .arcanum-hero-v2 h1,
  .account-intro h1 {
    font-size: 68px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas: "brand actions" "nav nav";
    min-height: 64px;
    padding-block: 8px;
  }

  .brand img {
    width: 36px;
    height: 42px;
    flex-basis: 36px;
  }

  .brand strong {
    font-size: 19px;
  }

  .main-nav {
    display: none;
    justify-content: stretch;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .main-nav a {
    justify-content: center;
  }

  .menu-button {
    display: inline-flex;
  }

  .discord-button {
    display: none;
  }

  .studio-hero {
    min-height: calc(100svh - 64px);
    padding-top: 50px;
  }

  .studio-mark {
    width: 110px;
    height: 128px;
  }

  .studio-status {
    grid-template-columns: 1fr;
    position: static;
    width: min(520px, 100%);
    margin-top: 38px;
    border: 1px solid var(--line);
  }

  .studio-status > span {
    padding: 10px 16px;
  }

  .studio-status > span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .world-panel {
    min-height: 520px;
  }

  .world-panel + .world-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .studio-manifesto {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .studio-manifesto > p {
    grid-column: auto;
  }

  .home-community,
  .arcanum-community-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .arcanum-hero-v2 {
    min-height: 760px;
    padding-bottom: 172px;
  }

  .arcanum-hero-shade {
    background: linear-gradient(180deg, rgba(4, 4, 8, 0.12), rgba(4, 4, 8, 0.96) 78%);
  }

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

  .arcanum-hero-meta {
    grid-template-columns: 1fr;
  }

  .arcanum-hero-meta span {
    grid-template-columns: 0.7fr 1fr;
  }

  .arcanum-hero-meta span + span {
    border-top: 1px solid rgba(240, 215, 160, 0.16);
    border-left: 0;
  }

  .arcanum-overview {
    grid-template-columns: 1fr 1fr;
  }

  .overview-lead {
    grid-column: 1 / -1;
  }

  .system-tabs {
    grid-template-columns: 1fr;
  }

  .system-tabs button + button {
    border-left: 0;
  }

  .system-stage {
    grid-template-columns: 1fr;
  }

  .system-visual {
    min-height: 420px;
  }

  .system-visual::after {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .arcanum-feature-grid {
    grid-template-columns: 1fr;
  }

  .arcanum-feature-grid .feature-primary {
    grid-template-columns: 1fr;
  }

  .arcanum-feature-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .forge-orbit {
    width: min(330px, 86vw);
  }

  .forge-orbit span {
    transform: rotate(calc(var(--i) * 90deg)) translateX(142px) rotate(calc(var(--i) * -90deg)) translate(-50%, -50%);
  }

  .academy-feature {
    min-height: 620px;
  }

  .launcher-release-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .museum-nav {
    top: 64px;
  }

  .museum-title {
    display: none;
  }

  .museum-nav {
    justify-content: center;
  }

  .museum-page-hero {
    grid-template-columns: 1fr;
  }

  .museum-seal {
    display: none;
  }

  .store-hero-v2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .store-hero-art {
    min-height: 280px;
  }

  .store-toolbar {
    top: 74px;
    grid-template-columns: 1fr auto;
  }

  .store-filters {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
  }

  .upcoming-products {
    grid-template-columns: 1fr;
  }

  .future-product {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .future-product-media {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .store-how {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .account-page {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 62px;
  }

  body::before {
    background-size: auto 100vh;
  }

  .site-header {
    min-height: 62px;
    padding-inline: 12px;
  }

  .brand > span {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .account-button {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .account-button span {
    display: none;
  }

  .site-header.menu-open .main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    font-size: 10px;
  }

  .main-nav a [data-lucide] {
    display: block;
  }

  :where(.home-page, .arcanum-page, .museum-page, .store-page) h1 {
    font-size: 50px;
  }

  :where(.home-page, .arcanum-page, .museum-page, .store-page) h2 {
    font-size: 38px;
  }

  .home-section,
  .arcanum-system-section,
  .launcher-release-section,
  .arcanum-overview,
  .arcanum-feature-grid,
  .store-shell {
    width: min(100% - 28px, var(--container));
  }

  .studio-hero {
    min-height: auto;
    padding: 52px 14px 42px;
  }

  .studio-hero h1 {
    font-size: 62px;
  }

  .studio-hero .lead {
    font-size: 14px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .world-section,
  .capability-section {
    padding-block: 78px;
  }

  .world-panel {
    min-height: 470px;
    padding: 24px;
  }

  .world-panel h3 {
    font-size: 40px;
  }

  .world-state {
    top: 14px;
    left: 14px;
  }

  .studio-manifesto {
    padding-block: 74px;
  }

  .capability-rail {
    grid-template-columns: 1fr;
  }

  .capability-rail article + article,
  .capability-rail article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-community {
    margin-bottom: 72px;
    padding: 34px 24px;
  }

  .home-community-actions,
  .home-community-actions .button {
    width: 100%;
  }

  .arcanum-hero-v2 {
    min-height: 720px;
    padding: 320px 14px 176px;
  }

  .arcanum-hero-image {
    height: 420px;
    object-position: center top;
  }

  .arcanum-hero-v2 h1 {
    font-size: 58px;
  }

  .arcanum-overview {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 74px;
  }

  .overview-lead {
    grid-column: auto;
  }

  .system-copy {
    padding: 32px 24px;
  }

  .system-copy h3 {
    font-size: 38px;
  }

  .system-visual {
    min-height: 330px;
  }

  .arcanum-feature-grid .feature-primary {
    min-height: 0;
    padding: 32px 22px 52px;
  }

  .arcanum-feature-grid article {
    min-height: 260px;
    padding: 30px 22px;
  }

  .forge-orbit {
    width: 250px;
  }

  .forge-orbit span {
    width: 78px;
    font-size: 7px;
    transform: rotate(calc(var(--i) * 90deg)) translateX(106px) rotate(calc(var(--i) * -90deg)) translate(-50%, -50%);
  }

  .academy-feature {
    min-height: 560px;
    padding: 50px 18px;
  }

  .launcher-release-section {
    padding-block: 80px;
  }

  .arcanum-community-band {
    padding: 66px 18px;
  }

  .arcanum-community-band .button {
    width: 100%;
  }

  .museum-nav {
    top: 62px;
    justify-content: flex-start;
  }

  .museum-nav > div {
    width: 100%;
  }

  .museum-page-hero,
  .museum-page-hero-main {
    min-height: 420px;
    padding: 62px 18px 42px;
  }

  .museum-hero-copy > img {
    margin-bottom: 10px;
  }

  .museum-preservation-note {
    width: calc(100% - 28px);
  }

  .store-hero-v2 {
    min-height: 0;
    padding: 66px 18px 52px;
  }

  .store-hero-art {
    min-height: 240px;
  }

  .store-hero-art img {
    width: 210px;
    height: 210px;
  }

  .store-toolbar {
    position: static;
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .favorites-filter {
    display: none;
  }

  .store-filters {
    grid-column: auto;
  }

  .store-live-products .wc-block-product-template {
    grid-template-columns: 1fr;
  }

  .store-live-products .wc-block-product {
    min-height: 0;
  }

  .future-product {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .future-product-media {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    aspect-ratio: 1.25;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .future-product-media img {
    width: 100%;
    max-width: 100%;
  }

  .store-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-section-title h2 {
    font-size: 38px;
  }

  .store-how ol {
    grid-template-columns: 1fr;
  }

  .store-how li:nth-child(odd) {
    border-right: 0;
  }

  .store-support {
    align-items: stretch;
    flex-direction: column;
    padding: 23px;
  }

  .store-support .button {
    width: 100%;
  }

  .product-modal[open] {
    display: block;
    overflow-y: auto;
  }

  .product-modal-media {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-modal-copy {
    padding: 32px 24px;
  }

  .product-modal-copy h2 {
    font-size: 38px;
  }

  .account-page {
    width: calc(100% - 28px);
    gap: 36px;
    padding-block: 56px 76px;
  }

  .not-found-page h1 {
    font-size: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
