:root {
  --maeu-bg: #100f12;
  --maeu-bg-soft: #151317;
  --maeu-panel: #1a191d;
  --maeu-panel-2: #232126;
  --maeu-panel-3: #2c2930;
  --maeu-text: #f7f3ee;
  --maeu-muted: #aaa4ad;
  --maeu-line: rgba(255, 255, 255, 0.1);
  --maeu-accent: #b78954;
  --maeu-accent-2: #e0bd81;
  --maeu-accent-pale: #f1ddbb;
  --maeu-ink: #211c1a;
  --maeu-ink-muted: #6f6864;
  --maeu-paper: #f3efe9;
  --maeu-white: #ffffff;
  --maeu-success: #62c493;
  --maeu-danger: #ef6a6a;
  --maeu-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --maeu-shadow-light: 0 22px 54px rgba(59, 38, 24, 0.12);
  --maeu-radius: 24px;
  --maeu-radius-sm: 15px;
  --maeu-shell: 1220px;
  --maeu-header: 78px;
  --maeu-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maeu-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--maeu-header) + 24px);
  background: var(--maeu-bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--maeu-bg);
  color: var(--maeu-text);
  font-family: var(--maeu-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .maeu-header {
  top: 32px;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button,
summary {
  cursor: pointer;
}

::selection {
  background: rgba(224, 189, 129, 0.3);
  color: #fff;
}

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

.screen-reader-text:focus,
.maeu-skip-link:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  top: 10px;
  left: 10px;
  z-index: 99999;
  background: var(--maeu-accent-2);
  color: #1d130b;
  border-radius: 10px;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(224, 189, 129, 0.75);
  outline-offset: 3px;
}

.maeu-site {
  overflow: clip;
}

.maeu-shell {
  width: min(var(--maeu-shell), calc(100% - 44px));
  margin-inline: auto;
}

.maeu-main {
  min-height: 60vh;
}

/* Header */
.maeu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--maeu-header);
  border-bottom: 1px solid transparent;
  background: rgba(16, 15, 18, 0.72);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.maeu-header.is-scrolled {
  background: rgba(16, 15, 18, 0.94);
  border-bottom-color: var(--maeu-line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.maeu-header__inner {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.maeu-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.maeu-brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--maeu-accent-2), var(--maeu-accent));
  box-shadow: 0 10px 30px rgba(183, 137, 84, 0.22);
}

.maeu-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maeu-brand__copy {
  display: grid;
  line-height: 1.1;
}

.maeu-brand__copy strong {
  font-size: 18px;
  letter-spacing: 0.015em;
}

.maeu-brand__copy small {
  margin-top: 4px;
  color: var(--maeu-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maeu-brand--compact .maeu-brand__copy small {
  display: none;
}

.maeu-header__nav {
  margin-left: auto;
}

.maeu-menu,
.maeu-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.maeu-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.maeu-menu > li {
  position: relative;
}

.maeu-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 12px;
  color: #d8d2da;
  font-size: 14px;
  font-weight: 720;
  transition: color 0.18s ease, background 0.18s ease;
}

.maeu-menu > li > a:hover,
.maeu-menu > li.current-menu-item > a,
.maeu-menu > li.current-menu-ancestor > a {
  color: var(--maeu-text);
  background: rgba(255, 255, 255, 0.06);
}

.maeu-menu .menu-item-has-children > a::after {
  content: "⌄";
  margin-left: 6px;
  color: var(--maeu-accent-2);
  font-size: 11px;
}

.maeu-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 245px;
  padding: 10px;
  border: 1px solid var(--maeu-line);
  border-radius: 16px;
  background: rgba(26, 25, 29, 0.98);
  box-shadow: var(--maeu-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.maeu-menu li:hover > .sub-menu,
.maeu-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.maeu-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--maeu-muted);
  font-size: 13px;
  font-weight: 700;
}

.maeu-menu .sub-menu a:hover,
.maeu-menu .sub-menu .current-menu-item > a {
  background: var(--maeu-panel-2);
  color: var(--maeu-text);
}

.maeu-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.maeu-header__login {
  color: #d8d2da;
  font-size: 14px;
  font-weight: 750;
  padding: 9px 4px;
}

.maeu-header__login:hover {
  color: var(--maeu-accent-2);
}

.maeu-menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 1px solid var(--maeu-line);
  border-radius: 13px;
  background: var(--maeu-panel);
}

.maeu-menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--maeu-text);
}

.maeu-mobile-nav__head,
.maeu-mobile-nav__actions,
.maeu-mobile-backdrop {
  display: none;
}

.maeu-icon-button {
  width: 43px;
  height: 43px;
  border: 1px solid var(--maeu-line);
  border-radius: 50%;
  background: var(--maeu-panel-2);
  color: var(--maeu-text);
  font-size: 26px;
  line-height: 1;
}

/* Language switcher */
.maeu-lang {
  position: relative;
}

.maeu-lang__toggle {
  min-width: 58px;
  height: 42px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--maeu-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--maeu-text);
}

.maeu-lang__toggle > span:first-child {
  color: var(--maeu-accent-2);
}

.maeu-lang__toggle strong {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.maeu-lang__chevron {
  color: var(--maeu-muted);
  transition: transform 0.18s ease;
}

.maeu-lang.is-open .maeu-lang__chevron {
  transform: rotate(180deg);
}

.maeu-lang__menu {
  position: absolute;
  z-index: 100;
  right: 0;
  top: calc(100% + 10px);
  width: 220px;
  padding: 9px;
  border: 1px solid var(--maeu-line);
  border-radius: 16px;
  background: rgba(26, 25, 29, 0.99);
  box-shadow: var(--maeu-shadow);
}

.maeu-lang__menu[hidden] {
  display: none;
}

.maeu-lang__menu a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--maeu-muted);
}

.maeu-lang__menu a:hover,
.maeu-lang__menu a:focus,
.maeu-lang__menu a.is-current {
  background: var(--maeu-panel-2);
  color: var(--maeu-text);
}

.maeu-lang__menu a span {
  color: var(--maeu-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.maeu-lang__menu a strong {
  font-size: 13px;
}

.maeu-lang__menu a small {
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(183, 137, 84, 0.14);
  color: var(--maeu-accent-2);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Buttons */
.maeu-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
}

.maeu-button {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.maeu-button--primary {
  background: linear-gradient(135deg, var(--maeu-accent-2), var(--maeu-accent));
  color: #20150d;
  box-shadow: 0 12px 34px rgba(183, 137, 84, 0.2);
}

.maeu-button--primary:hover {
  box-shadow: 0 16px 42px rgba(183, 137, 84, 0.32);
}

.maeu-button--secondary {
  border-color: var(--maeu-line);
  background: var(--maeu-panel-2);
  color: var(--maeu-text);
}

.maeu-section--light .maeu-button--secondary,
.maeu-section--plain .maeu-button--secondary {
  border-color: rgba(33, 28, 26, 0.12);
  background: #fff;
  color: var(--maeu-ink);
  box-shadow: 0 10px 26px rgba(59, 38, 24, 0.08);
}

.maeu-button--ghost {
  border-color: rgba(224, 189, 129, 0.2);
  background: transparent;
  color: var(--maeu-accent-2);
}

.maeu-button--light {
  border-color: rgba(255, 255, 255, 0.2);
  background: #fff;
  color: #24160e;
}

.maeu-button[disabled] {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

/* Language fallback */
.maeu-language-notice {
  margin-top: var(--maeu-header);
  background: #241c14;
  border-bottom: 1px solid rgba(224, 189, 129, 0.18);
  color: #eadcc7;
}

.maeu-language-notice + .maeu-hero {
  padding-top: 72px;
}

.maeu-language-notice .maeu-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
}

.maeu-language-notice span {
  color: var(--maeu-accent-2);
  font-size: 20px;
}

.maeu-language-notice p {
  margin: 0;
  font-size: 13px;
}

/* Hero */
.maeu-hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--maeu-header) + 92px) 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(183, 137, 84, 0.18), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(92, 57, 118, 0.16), transparent 34%),
    linear-gradient(180deg, #100f12 0%, #131116 100%);
}

.maeu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16, 15, 18, 0.14), rgba(16, 15, 18, 0));
}

.maeu-hero__stars,
.maeu-hero__stars::before,
.maeu-hero__stars::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(224, 189, 129, 0.42) 0 1px, transparent 1.5px);
  background-size: 87px 87px, 143px 143px;
  background-position: 0 0, 23px 41px;
  opacity: 0.22;
}

.maeu-hero__stars::before {
  transform: rotate(17deg) scale(1.15);
  opacity: 0.25;
}

.maeu-hero__stars::after {
  transform: rotate(-12deg) scale(1.1);
  opacity: 0.13;
}

.maeu-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.maeu-hero__copy {
  max-width: 690px;
}

.maeu-eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--maeu-accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.maeu-eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.maeu-hero h1,
.maeu-section-head h2,
.maeu-archive-hero h1,
.maeu-article__hero h1,
.maeu-error-page h1,
.maeu-page-title h1 {
  margin: 0;
  font-family: var(--maeu-serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.maeu-hero h1 {
  max-width: 800px;
  font-size: clamp(47px, 6.4vw, 86px);
}

.maeu-hero__lead {
  max-width: 700px;
  margin-top: 26px;
  color: #c8c1ca;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.maeu-hero__lead p {
  margin: 0;
}

.maeu-fineprint {
  max-width: 650px;
  margin: 20px 0 0;
  color: #8f8993;
  font-size: 12px;
  line-height: 1.65;
}

.maeu-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.maeu-chip {
  min-height: 33px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(224, 189, 129, 0.16);
  border-radius: 999px;
  background: rgba(183, 137, 84, 0.07);
  color: #c9c2ca;
  font-size: 11px;
  font-weight: 800;
}

.maeu-chip i {
  color: var(--maeu-accent-2);
  font-style: normal;
}

.maeu-hero__visual {
  min-width: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

/* Application mockup */
.maeu-app-mock {
  width: min(680px, 100%);
  min-height: 490px;
  display: grid;
  grid-template-columns: 82px 1fr;
  overflow: hidden;
  border: 1px solid rgba(224, 189, 129, 0.17);
  border-radius: 30px;
  background: #161419;
  box-shadow: 0 55px 110px rgba(0, 0, 0, 0.5), 0 0 0 9px rgba(255, 255, 255, 0.018);
  transform: rotateY(-4deg) rotateX(2deg);
}

.maeu-app-mock__sidebar {
  padding: 18px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  border-right: 1px solid var(--maeu-line);
  background: rgba(16, 15, 18, 0.88);
}

.maeu-app-mock__sidebar > div {
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  gap: 7px;
}

.maeu-app-mock__sidebar img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.maeu-app-mock__sidebar b {
  display: none;
}

.maeu-app-mock__sidebar > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #8e8892;
  font-size: 15px;
  font-weight: 900;
}

.maeu-app-mock__sidebar > span.is-active {
  background: linear-gradient(145deg, rgba(224, 189, 129, 0.24), rgba(183, 137, 84, 0.08));
  color: var(--maeu-accent-2);
}

.maeu-app-mock__main {
  padding: 24px;
}

.maeu-app-mock__main header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.maeu-app-mock__main header div {
  display: grid;
}

.maeu-app-mock__main header small {
  color: var(--maeu-muted);
}

.maeu-app-mock__main header strong {
  font-size: 20px;
}

.maeu-app-mock__main header > span {
  padding: 7px 10px;
  border: 1px solid var(--maeu-line);
  border-radius: 10px;
  color: var(--maeu-accent-2);
  font-size: 10px;
  font-weight: 900;
}

.maeu-app-mock__stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.maeu-app-mock__stats article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--maeu-line);
  border-radius: 17px;
  background: var(--maeu-panel);
}

.maeu-app-mock__stats small {
  color: var(--maeu-muted);
  font-size: 10px;
  font-weight: 800;
}

.maeu-app-mock__stats strong {
  display: block;
  margin-top: 8px;
  color: var(--maeu-accent-2);
  font-size: 28px;
}

.maeu-app-mock__content {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
}

.maeu-app-mock__profile,
.maeu-app-mock__list {
  min-height: 235px;
  padding: 16px;
  border: 1px solid var(--maeu-line);
  border-radius: 18px;
  background: var(--maeu-panel);
}

.maeu-app-mock__profile {
  display: grid;
  place-items: center;
  text-align: center;
}

.maeu-app-mock__profile small,
.maeu-app-mock__profile p {
  color: var(--maeu-muted);
  font-size: 10px;
}

.maeu-app-mock__profile strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.maeu-mini-wheel {
  position: relative;
  width: 105px;
  height: 105px;
  margin-bottom: 12px;
  border: 1px solid rgba(224, 189, 129, 0.55);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 29deg, rgba(224, 189, 129, 0.3) 30deg 30.8deg);
}

.maeu-mini-wheel::before,
.maeu-mini-wheel::after {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.maeu-mini-wheel::after {
  inset: 38px;
  background: var(--maeu-accent);
  opacity: 0.45;
}

.maeu-app-mock__list > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}

.maeu-app-mock__list > span {
  min-height: 47px;
  padding: 8px 0;
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--maeu-line);
  color: #c8c1ca;
  font-size: 10px;
  font-weight: 700;
}

.maeu-app-mock__list i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--maeu-panel-2);
  color: var(--maeu-accent-2);
  font-style: normal;
  font-size: 9px;
}

.maeu-app-mock__list b {
  color: var(--maeu-accent-2);
}

/* Trust */
.maeu-trust {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--maeu-line);
  background: #131116;
}

.maeu-trust__grid {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.maeu-trust__item {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--maeu-line);
}

.maeu-trust__item:last-child {
  border-right: 1px solid var(--maeu-line);
}

.maeu-trust__item > span {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(183, 137, 84, 0.1);
  color: var(--maeu-accent-2);
  font-size: 14px;
  font-weight: 900;
}

.maeu-trust__item div {
  display: grid;
}

.maeu-trust__item strong {
  font-size: 13px;
}

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

/* Sections */
.maeu-section {
  position: relative;
  padding: 104px 0;
  background: var(--maeu-bg);
}

.maeu-section--compact {
  padding-block: 64px;
}

.maeu-section--light {
  background: var(--maeu-paper);
  color: var(--maeu-ink);
}

.maeu-section--plain {
  background: #fff;
  color: var(--maeu-ink);
}

.maeu-section--deep {
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 137, 84, 0.13), transparent 28%),
    linear-gradient(155deg, #161318, #0e0d10);
  color: var(--maeu-text);
}

.maeu-section--gold {
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 229, 183, 0.22), transparent 30%),
    linear-gradient(135deg, #6d492d, #2a1c15 68%, #151116);
  color: var(--maeu-text);
}

.maeu-section--cta {
  padding: 76px 0;
  background: var(--maeu-paper);
  color: var(--maeu-ink);
}

.maeu-section-head {
  max-width: 790px;
  margin-bottom: 44px;
}

.maeu-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.maeu-section-head--center .maeu-eyebrow {
  justify-content: center;
}

.maeu-section-head h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.maeu-section-lead {
  max-width: 750px;
  margin-top: 22px;
  color: var(--maeu-muted);
  font-size: 18px;
  line-height: 1.75;
}

.maeu-section--light .maeu-section-lead,
.maeu-section--plain .maeu-section-lead {
  color: var(--maeu-ink-muted);
}

.maeu-section-head--center .maeu-section-lead {
  margin-inline: auto;
}

.maeu-section-lead p {
  margin: 0;
}

/* Cards */
.maeu-card-grid {
  display: grid;
  gap: 18px;
}

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

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

.maeu-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.maeu-card {
  min-width: 0;
  min-height: 260px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--maeu-line);
  border-radius: var(--maeu-radius);
  background: var(--maeu-panel);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.maeu-section--light .maeu-card,
.maeu-section--plain .maeu-card {
  border-color: rgba(33, 28, 26, 0.09);
  background: #fff;
  box-shadow: var(--maeu-shadow-light);
}

.maeu-card--linked:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 189, 129, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.maeu-section--light .maeu-card--linked:hover,
.maeu-section--plain .maeu-card--linked:hover {
  border-color: rgba(183, 137, 84, 0.35);
  box-shadow: 0 28px 64px rgba(59, 38, 24, 0.15);
}

.maeu-card__top {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.maeu-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 189, 129, 0.16);
  border-radius: 15px;
  background: rgba(183, 137, 84, 0.09);
  color: var(--maeu-accent-2);
  font-size: 15px;
  font-weight: 900;
}

.maeu-section--light .maeu-icon,
.maeu-section--plain .maeu-icon {
  background: #f6efe7;
  color: #8f5b34;
  border-color: rgba(143, 91, 52, 0.12);
}

.maeu-tag {
  min-height: 27px;
  padding: 5px 9px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(224, 189, 129, 0.16);
  border-radius: 999px;
  background: rgba(183, 137, 84, 0.08);
  color: var(--maeu-accent-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maeu-section--light .maeu-tag,
.maeu-section--plain .maeu-tag {
  color: #8f5b34;
  background: #f6efe7;
  border-color: rgba(143, 91, 52, 0.12);
}

.maeu-card h3 {
  margin: 22px 0 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.maeu-card__copy,
.maeu-card > p {
  margin-top: 12px;
  color: var(--maeu-muted);
  font-size: 14px;
  line-height: 1.72;
}

.maeu-section--light .maeu-card__copy,
.maeu-section--plain .maeu-card__copy,
.maeu-section--light .maeu-card > p,
.maeu-section--plain .maeu-card > p {
  color: var(--maeu-ink-muted);
}

.maeu-card__copy p {
  margin: 0;
}

.maeu-card__link {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--maeu-accent-2);
  font-size: 13px;
  font-weight: 850;
}

.maeu-section--light .maeu-card__link,
.maeu-section--plain .maeu-card__link {
  color: #8c5832;
}

.maeu-card__link b {
  transition: transform 0.18s ease;
}

.maeu-card__link:hover b {
  transform: translateX(4px);
}

.maeu-checks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.maeu-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--maeu-muted);
  font-size: 13px;
  line-height: 1.55;
}

.maeu-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--maeu-accent-2);
  font-weight: 900;
}

.maeu-section--light .maeu-checks li,
.maeu-section--plain .maeu-checks li {
  color: var(--maeu-ink-muted);
}

.maeu-section--light .maeu-checks li::before,
.maeu-section--plain .maeu-checks li::before {
  color: #925d35;
}

.maeu-checks--large {
  gap: 13px;
  margin-top: 28px;
}

.maeu-checks--large li {
  padding-left: 31px;
  color: inherit;
  font-size: 15px;
}

.maeu-checks--large li::before {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(183, 137, 84, 0.12);
  font-size: 10px;
}

/* Split */
.maeu-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.maeu-split--reverse .maeu-split__copy {
  order: 2;
}

.maeu-split--reverse .maeu-split__visual {
  order: 1;
}

.maeu-split__copy .maeu-section-head {
  margin-bottom: 0;
}

.maeu-split__visual {
  min-width: 0;
  display: grid;
  place-items: center;
}

.maeu-prose {
  color: var(--maeu-muted);
  line-height: 1.85;
}

.maeu-section--light .maeu-prose,
.maeu-section--plain .maeu-prose {
  color: var(--maeu-ink-muted);
}

.maeu-prose p {
  margin: 0 0 1.15em;
}

.maeu-callout {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(224, 189, 129, 0.18);
  border-left: 4px solid var(--maeu-accent);
  border-radius: 15px;
  background: rgba(183, 137, 84, 0.08);
  color: #d8d0c9;
  font-size: 14px;
  line-height: 1.72;
}

.maeu-section--light .maeu-callout,
.maeu-section--plain .maeu-callout {
  background: #fbf6ef;
  color: var(--maeu-ink-muted);
  border-color: rgba(143, 91, 52, 0.12);
  border-left-color: var(--maeu-accent);
}

.maeu-callout p {
  margin: 0;
}

.maeu-callout strong {
  color: inherit;
}

.maeu-callout--center {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
}

/* Steps and timeline */
.maeu-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.maeu-step {
  position: relative;
  min-height: 250px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--maeu-line);
  border-radius: var(--maeu-radius);
  background: var(--maeu-panel);
}

.maeu-section--plain .maeu-step,
.maeu-section--light .maeu-step {
  border-color: rgba(33, 28, 26, 0.09);
  background: #fff;
  box-shadow: var(--maeu-shadow-light);
}

.maeu-step::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 189, 129, 0.17), transparent 70%);
}

.maeu-step__number {
  color: var(--maeu-accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.maeu-section--plain .maeu-step__number,
.maeu-section--light .maeu-step__number {
  color: #8f5b34;
}

.maeu-step h3 {
  margin: 34px 0 12px;
  font-size: 20px;
}

.maeu-step p {
  margin: 0;
  color: var(--maeu-muted);
  font-size: 13px;
  line-height: 1.72;
}

.maeu-section--plain .maeu-step p,
.maeu-section--light .maeu-step p {
  color: var(--maeu-ink-muted);
}

.maeu-timeline {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.maeu-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 37px;
  width: 1px;
  background: linear-gradient(var(--maeu-accent), rgba(183, 137, 84, 0.08));
}

.maeu-timeline article {
  position: relative;
  min-height: 128px;
  padding: 0 0 42px 98px;
  display: grid;
  grid-template-columns: 1fr;
}

.maeu-timeline article > span {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 137, 84, 0.24);
  border-radius: 50%;
  background: #fff;
  color: #8f5b34;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(59, 38, 24, 0.1);
}

.maeu-section--deep .maeu-timeline article > span,
.maeu-section--gold .maeu-timeline article > span {
  background: var(--maeu-panel);
  color: var(--maeu-accent-2);
}

.maeu-timeline h3 {
  margin: 3px 0 9px;
  font-size: 23px;
}

.maeu-timeline p {
  max-width: 700px;
  margin: 0;
  color: var(--maeu-ink-muted);
}

.maeu-section--deep .maeu-timeline p,
.maeu-section--gold .maeu-timeline p {
  color: var(--maeu-muted);
}

/* Comparison */
.maeu-comparison-wrap {
  overflow-x: auto;
  border-radius: var(--maeu-radius);
  box-shadow: var(--maeu-shadow-light);
}

.maeu-comparison {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
  color: var(--maeu-ink);
}

.maeu-comparison th,
.maeu-comparison td {
  width: 50%;
  padding: 19px 24px;
  border: 1px solid rgba(33, 28, 26, 0.08);
  text-align: left;
  vertical-align: top;
}

.maeu-comparison th {
  background: #ece5dc;
  font-size: 15px;
}

.maeu-comparison th:last-child {
  background: #2a211b;
  color: #fff;
}

.maeu-comparison td {
  color: var(--maeu-ink-muted);
  font-size: 14px;
}

.maeu-comparison td span {
  display: inline-grid;
  width: 24px;
  margin-right: 8px;
  color: #99918b;
  font-weight: 900;
}

.maeu-comparison td:last-child {
  color: #40362f;
  font-weight: 650;
}

.maeu-comparison td:last-child span {
  color: #8f5b34;
}

/* AI demo */
.maeu-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.maeu-ai-grid .maeu-section-head {
  margin-bottom: 0;
}

.maeu-ai-demo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(16, 15, 18, 0.68);
  box-shadow: var(--maeu-shadow);
  backdrop-filter: blur(12px);
}

.maeu-ai-demo__bar {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--maeu-line);
  background: rgba(255, 255, 255, 0.03);
}

.maeu-ai-demo__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c656f;
}

.maeu-ai-demo__bar > span:first-child {
  background: #d87672;
}

.maeu-ai-demo__bar > span:nth-child(2) {
  background: #d6b065;
}

.maeu-ai-demo__bar > span:nth-child(3) {
  background: #62b783;
}

.maeu-ai-demo__bar strong {
  margin-left: 8px;
  color: #d8d1d9;
  font-size: 12px;
}

.maeu-ai-demo__prompt {
  margin: 22px 22px 0 75px;
  padding: 16px 18px;
  border-radius: 18px 18px 5px 18px;
  background: linear-gradient(135deg, rgba(224, 189, 129, 0.2), rgba(183, 137, 84, 0.08));
}

.maeu-ai-demo__prompt small {
  color: var(--maeu-accent-2);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.maeu-ai-demo__prompt p {
  margin: 5px 0 0;
  color: #f0e8df;
  font-size: 13px;
  line-height: 1.65;
}

.maeu-ai-demo__answer {
  margin: 14px 75px 0 22px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.maeu-ai-demo__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--maeu-accent-2), var(--maeu-accent));
  color: #21150d;
  font-size: 10px;
  font-weight: 900;
}

.maeu-ai-demo__answer > div:last-child {
  padding: 16px 18px;
  border: 1px solid var(--maeu-line);
  border-radius: 5px 18px 18px 18px;
  background: var(--maeu-panel);
}

.maeu-ai-demo__answer strong {
  color: var(--maeu-accent-2);
  font-size: 12px;
}

.maeu-ai-demo__answer p {
  margin: 7px 0 0;
  color: #c0b9c2;
  font-size: 12px;
  line-height: 1.75;
}

.maeu-ai-demo__notice {
  margin: 20px 22px 22px;
  padding: 13px 15px;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(224, 189, 129, 0.14);
  border-radius: 14px;
  background: rgba(183, 137, 84, 0.07);
  color: #9f98a2;
  font-size: 10px;
  line-height: 1.6;
}

.maeu-ai-demo__notice span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(224, 189, 129, 0.14);
  color: var(--maeu-accent-2);
  font-weight: 900;
}

/* Languages */
.maeu-language-block {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: 72px;
  align-items: center;
}

.maeu-language-block .maeu-section-head {
  margin-bottom: 0;
}

.maeu-language-orbit {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.maeu-language-orbit::before,
.maeu-language-orbit::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(224, 189, 129, 0.15);
  border-radius: 50%;
}

.maeu-language-orbit::after {
  width: 270px;
  height: 270px;
  border-style: dashed;
  animation: maeu-spin 40s linear infinite;
}

.maeu-language-orbit__core {
  position: relative;
  z-index: 2;
  width: 175px;
  height: 175px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(224, 189, 129, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 137, 84, 0.2), rgba(16, 15, 18, 0.9));
  box-shadow: 0 0 60px rgba(183, 137, 84, 0.16);
}

.maeu-language-orbit__core img {
  width: 76px;
  height: 76px;
  border-radius: 22px;
}

.maeu-language-orbit__core strong {
  margin-top: 8px;
  color: var(--maeu-accent-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.maeu-language-pills {
  position: absolute;
  inset: 0;
}

.maeu-language-pills span {
  position: absolute;
  min-width: 112px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--maeu-line);
  border-radius: 13px;
  background: var(--maeu-panel);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #c7c0c8;
  font-size: 10px;
}

.maeu-language-pills b {
  color: var(--maeu-accent-2);
  font-size: 11px;
}

.maeu-language-pills span:nth-child(1) { left: 4%; top: 16%; }
.maeu-language-pills span:nth-child(2) { right: 2%; top: 12%; }
.maeu-language-pills span:nth-child(3) { right: -2%; top: 43%; }
.maeu-language-pills span:nth-child(4) { right: 7%; bottom: 8%; }
.maeu-language-pills span:nth-child(5) { left: 38%; bottom: -1%; }
.maeu-language-pills span:nth-child(6) { left: 1%; bottom: 15%; }
.maeu-language-pills span:nth-child(7) { left: -3%; top: 45%; }

/* Pricing */
.maeu-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.maeu-price-card {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--maeu-line);
  border-radius: var(--maeu-radius);
  background: var(--maeu-panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
}

.maeu-section--light .maeu-price-card,
.maeu-section--plain .maeu-price-card {
  border-color: rgba(33, 28, 26, 0.09);
  background: #fff;
  color: var(--maeu-ink);
  box-shadow: var(--maeu-shadow-light);
}

.maeu-price-card--featured {
  transform: translateY(-10px);
  border-color: rgba(224, 189, 129, 0.38);
  background: linear-gradient(160deg, rgba(183, 137, 84, 0.2), var(--maeu-panel) 42%);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
}

.maeu-section--light .maeu-price-card--featured,
.maeu-section--plain .maeu-price-card--featured {
  background: linear-gradient(160deg, #f4e5cf, #fff 45%);
  border-color: rgba(143, 91, 52, 0.3);
  box-shadow: 0 30px 70px rgba(91, 59, 34, 0.19);
}

.maeu-price-card__top {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.maeu-price-card__best {
  color: var(--maeu-accent-2);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.maeu-section--light .maeu-price-card__best,
.maeu-section--plain .maeu-price-card__best {
  color: #8f5b34;
}

.maeu-price-card h3 {
  margin: 22px 0 0;
  font-size: 22px;
}

.maeu-price-card__price {
  min-height: 67px;
  margin-top: 12px;
  color: var(--maeu-accent-2);
  font-family: var(--maeu-serif);
  font-size: 24px;
  line-height: 1.15;
}

.maeu-section--light .maeu-price-card__price,
.maeu-section--plain .maeu-price-card__price {
  color: #80502f;
}

.maeu-price-card > p {
  min-height: 88px;
  margin: 4px 0 0;
  color: var(--maeu-muted);
  font-size: 13px;
  line-height: 1.65;
}

.maeu-section--light .maeu-price-card > p,
.maeu-section--plain .maeu-price-card > p {
  color: var(--maeu-ink-muted);
}

.maeu-price-card .maeu-button {
  width: 100%;
  margin-top: auto;
}

.maeu-legal-note {
  max-width: 930px;
  margin: 24px auto 0;
  color: var(--maeu-muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.maeu-section--light .maeu-legal-note,
.maeu-section--plain .maeu-legal-note {
  color: var(--maeu-ink-muted);
}

/* Security */
.maeu-security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: start;
}

.maeu-security-grid .maeu-section-head {
  margin-bottom: 0;
}

.maeu-security-list {
  display: grid;
  gap: 12px;
}

.maeu-security-list article {
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  border: 1px solid var(--maeu-line);
  border-radius: 18px;
  background: var(--maeu-panel);
}

.maeu-section--light .maeu-security-list article,
.maeu-section--plain .maeu-security-list article {
  border-color: rgba(33, 28, 26, 0.09);
  background: #fff;
  box-shadow: 0 12px 34px rgba(59, 38, 24, 0.08);
}

.maeu-security-list strong {
  font-size: 15px;
}

.maeu-security-list p {
  margin: 5px 0 0;
  color: var(--maeu-muted);
  font-size: 12px;
  line-height: 1.62;
}

.maeu-section--light .maeu-security-list p,
.maeu-section--plain .maeu-security-list p {
  color: var(--maeu-ink-muted);
}

/* FAQ */
.maeu-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: start;
}

.maeu-faq-layout__head {
  position: sticky;
  top: calc(var(--maeu-header) + 32px);
}

.maeu-faq-layout__head .maeu-section-head {
  margin-bottom: 0;
}

.maeu-faq {
  display: grid;
  gap: 10px;
}

.maeu-faq details {
  overflow: hidden;
  border: 1px solid var(--maeu-line);
  border-radius: 17px;
  background: var(--maeu-panel);
}

.maeu-section--light .maeu-faq details,
.maeu-section--plain .maeu-faq details {
  border-color: rgba(33, 28, 26, 0.09);
  background: #fff;
  box-shadow: 0 8px 24px rgba(59, 38, 24, 0.05);
}

.maeu-faq summary {
  list-style: none;
  min-height: 67px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  font-weight: 820;
}

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

.maeu-faq summary b {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(183, 137, 84, 0.1);
  color: var(--maeu-accent-2);
  font-size: 18px;
  font-weight: 500;
}

.maeu-section--light .maeu-faq summary b,
.maeu-section--plain .maeu-faq summary b {
  color: #8f5b34;
  background: #f5eee6;
}

.maeu-faq details > div {
  padding: 0 19px 19px;
  border-top: 1px solid var(--maeu-line);
  color: var(--maeu-muted);
  font-size: 13px;
  line-height: 1.75;
}

.maeu-section--light .maeu-faq details > div,
.maeu-section--plain .maeu-faq details > div {
  color: var(--maeu-ink-muted);
  border-top-color: rgba(33, 28, 26, 0.08);
}

.maeu-faq details > div p {
  margin: 14px 0 0;
}

/* CTA */
.maeu-cta {
  position: relative;
  min-height: 310px;
  padding: clamp(35px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 30%, rgba(224, 189, 129, 0.18), transparent 23%),
    linear-gradient(140deg, #1b171b, #0f0e11);
  color: var(--maeu-text);
  box-shadow: var(--maeu-shadow);
}

.maeu-cta__orbit {
  position: absolute;
  right: -70px;
  top: -105px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(224, 189, 129, 0.17);
  border-radius: 50%;
}

.maeu-cta__orbit::before,
.maeu-cta__orbit::after {
  content: "";
  position: absolute;
  inset: 55px;
  border: 1px dashed rgba(224, 189, 129, 0.15);
  border-radius: 50%;
}

.maeu-cta__orbit::after {
  inset: 112px;
  background: rgba(183, 137, 84, 0.12);
  box-shadow: 0 0 45px rgba(183, 137, 84, 0.2);
}

.maeu-cta > div:not(.maeu-cta__orbit),
.maeu-cta > .maeu-buttons {
  position: relative;
  z-index: 2;
}

.maeu-cta h2 {
  max-width: 750px;
  margin: 0;
  font-family: var(--maeu-serif);
  font-size: clamp(37px, 5vw, 61px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.maeu-cta p:not(.maeu-eyebrow) {
  max-width: 650px;
  margin: 17px 0 0;
  color: #aaa3ad;
  font-size: 15px;
}

.maeu-cta .maeu-buttons {
  margin: 0;
  justify-content: flex-end;
}

/* Visuals: wheel */
.maeu-wheel-card {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--maeu-line);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 45%, rgba(183, 137, 84, 0.12), var(--maeu-panel) 60%);
  box-shadow: var(--maeu-shadow);
}

.maeu-wheel {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid rgba(224, 189, 129, 0.52);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -15deg, transparent 0 29deg, rgba(224, 189, 129, 0.34) 30deg 30.5deg),
    radial-gradient(circle at center, transparent 0 31%, rgba(224, 189, 129, 0.08) 31.5% 32%, transparent 32.5% 65%, rgba(224, 189, 129, 0.11) 65.5% 66%, transparent 66.5%);
  box-shadow: inset 0 0 42px rgba(183, 137, 84, 0.09), 0 0 55px rgba(183, 137, 84, 0.08);
}

.maeu-wheel__ring {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.maeu-wheel__cross::before,
.maeu-wheel__cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.maeu-wheel__cross::after {
  top: 50%;
  left: 10%;
  right: 10%;
  bottom: auto;
  width: auto;
  height: 1px;
}

.maeu-wheel > span {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--maeu-panel-2);
  color: var(--maeu-accent-2);
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.maeu-wheel .p1 { left: 46%; top: 5%; }
.maeu-wheel .p2 { right: 10%; top: 24%; }
.maeu-wheel .p3 { right: 10%; bottom: 20%; }
.maeu-wheel .p4 { left: 47%; bottom: 5%; }
.maeu-wheel .p5 { left: 9%; bottom: 23%; }
.maeu-wheel .p6 { left: 8%; top: 24%; }

.maeu-wheel > i {
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--maeu-accent-2), var(--maeu-accent));
  box-shadow: 0 0 35px rgba(224, 189, 129, 0.35);
}

.maeu-wheel-card__legend {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.maeu-wheel-card__legend span {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--maeu-line);
  border-radius: 12px;
  color: var(--maeu-muted);
  font-size: 10px;
}

.maeu-wheel-card__legend b {
  color: var(--maeu-accent-2);
}

/* System orbit */
.maeu-system-orbit {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.maeu-system-orbit::before,
.maeu-system-orbit::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(224, 189, 129, 0.15);
  border-radius: 50%;
}

.maeu-system-orbit::after {
  inset: 23%;
  border-style: dashed;
  animation: maeu-spin 34s linear infinite reverse;
}

.maeu-system-orbit__core {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(224, 189, 129, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 137, 84, 0.18), rgba(16, 15, 18, 0.92));
  box-shadow: 0 0 70px rgba(183, 137, 84, 0.14);
}

.maeu-system-orbit__core img {
  width: 84px;
  height: 84px;
  border-radius: 24px;
}

.maeu-system-orbit__core strong {
  margin-top: 8px;
  color: var(--maeu-accent-2);
  font-size: 12px;
}

.maeu-system-orbit > span {
  position: absolute;
  z-index: 3;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--maeu-line);
  border-radius: 22px;
  background: var(--maeu-panel);
  color: var(--maeu-accent-2);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.24);
  font-size: 17px;
  font-weight: 900;
}

.maeu-system-orbit > span small {
  margin-top: 3px;
  color: var(--maeu-muted);
  font-size: 8px;
}

.maeu-system-orbit .s1 { left: 5%; top: 14%; }
.maeu-system-orbit .s2 { right: 5%; top: 14%; }
.maeu-system-orbit .s3 { right: -2%; top: 47%; }
.maeu-system-orbit .s4 { right: 17%; bottom: 2%; }
.maeu-system-orbit .s5 { left: 16%; bottom: 2%; }
.maeu-system-orbit .s6 { left: -2%; top: 48%; }

/* Dream */
.maeu-dream-card {
  position: relative;
  width: min(480px, 100%);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(224, 189, 129, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 27%, rgba(119, 95, 162, 0.35), transparent 25%),
    linear-gradient(155deg, #1b1725, #0e0c12);
  box-shadow: var(--maeu-shadow);
}

.maeu-dream-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.4px);
  background-size: 54px 54px;
  opacity: 0.18;
}

.maeu-dream-card__moon {
  position: absolute;
  right: 45px;
  top: 45px;
  color: #efe0bd;
  font-size: 110px;
  line-height: 1;
  text-shadow: 0 0 50px rgba(224, 189, 129, 0.3);
}

.maeu-dream-card__entry {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(19, 16, 24, 0.76);
  backdrop-filter: blur(14px);
}

.maeu-dream-card__entry small {
  color: #b7a6ca;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.maeu-dream-card__entry h3 {
  margin: 8px 0 7px;
  font-family: var(--maeu-serif);
  font-size: 28px;
  font-weight: 500;
}

.maeu-dream-card__entry p {
  margin: 0;
  color: #aaa0b4;
  font-size: 11px;
}

.maeu-dream-card__entry span {
  margin-top: 15px;
  padding: 7px 10px;
  display: inline-flex;
  border: 1px solid rgba(183, 137, 84, 0.2);
  border-radius: 999px;
  color: var(--maeu-accent-2);
  font-size: 9px;
  font-weight: 900;
}

/* Report */
.maeu-report-mock {
  position: relative;
  width: min(460px, 100%);
  padding: 28px 58px 28px 28px;
}

.maeu-report-mock__paper {
  min-height: 490px;
  padding: 33px;
  transform: rotate(-3deg);
  border-radius: 8px;
  background: #fff;
  color: #2b2420;
  box-shadow: 0 38px 85px rgba(0, 0, 0, 0.42);
}

.maeu-report-mock__paper header {
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd4cc;
}

.maeu-report-mock__paper header span,
.maeu-report-mock__paper header b {
  display: block;
}

.maeu-report-mock__paper header span {
  color: #a06b41;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.maeu-report-mock__paper header b {
  margin-top: 6px;
  font-family: var(--maeu-serif);
  font-size: 27px;
}

.maeu-report-mock__line {
  width: 70%;
  height: 7px;
  margin-top: 15px;
  border-radius: 10px;
  background: #e9e2dc;
}

.maeu-report-mock__line.is-wide {
  width: 100%;
  margin-top: 25px;
}

.maeu-report-mock__chart {
  height: 145px;
  margin-top: 26px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  border-radius: 12px;
  background: #f4efe9;
}

.maeu-report-mock__chart i {
  flex: 1;
  height: 55%;
  border-radius: 6px 6px 0 0;
  background: #b78954;
}

.maeu-report-mock__chart i:nth-child(2) { height: 85%; opacity: 0.75; }
.maeu-report-mock__chart i:nth-child(3) { height: 65%; opacity: 0.5; }
.maeu-report-mock__chart i:nth-child(4) { height: 95%; opacity: 0.9; }

.maeu-report-mock__pdf {
  position: absolute;
  right: 15px;
  top: 82px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: linear-gradient(145deg, var(--maeu-accent-2), var(--maeu-accent));
  color: #26180f;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(183, 137, 84, 0.35);
}

/* Phone */
.maeu-phone {
  width: 280px;
  min-height: 560px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 47px;
  background: #08080a;
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.52);
}

.maeu-phone__speaker {
  position: absolute;
}

.maeu-phone__screen {
  min-height: 536px;
  padding: 27px 17px;
  overflow: hidden;
  border-radius: 37px;
  background: linear-gradient(160deg, #17151a, #0d0c0f);
}

.maeu-phone__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.maeu-phone__brand img {
  width: 38px;
  height: 38px;
  border-radius: 13px;
}

.maeu-phone__brand strong {
  font-size: 14px;
}

.maeu-phone__cards {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.maeu-phone__cards span {
  min-height: 115px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--maeu-line);
  border-radius: 19px;
  background: var(--maeu-panel);
  color: var(--maeu-accent-2);
  font-size: 23px;
  font-weight: 900;
}

.maeu-phone__cards small {
  margin-top: 8px;
  color: var(--maeu-muted);
  font-size: 9px;
  font-weight: 700;
}

.maeu-phone button {
  width: 100%;
  min-height: 44px;
  margin-top: 24px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--maeu-accent-2), var(--maeu-accent));
  color: #21150d;
  font-size: 11px;
  font-weight: 900;
}

/* BaZi */
.maeu-bazi {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.maeu-bazi > div {
  min-height: 300px;
  padding: 24px 12px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--maeu-line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--maeu-panel), #121014);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.19);
}

.maeu-bazi span {
  color: var(--maeu-accent-2);
  font-family: var(--maeu-serif);
  font-size: 45px;
}

.maeu-bazi strong {
  margin-top: 28px;
  font-size: 13px;
}

.maeu-bazi small {
  margin-top: 6px;
  color: var(--maeu-muted);
  font-size: 9px;
}

/* Number map */
.maeu-number-map {
  position: relative;
  width: min(450px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 189, 129, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 137, 84, 0.18), var(--maeu-panel) 62%);
  box-shadow: var(--maeu-shadow);
}

.maeu-number-map::before,
.maeu-number-map::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(224, 189, 129, 0.2);
  border-radius: 50%;
}

.maeu-number-map::after {
  inset: 32%;
}

.maeu-number-map > div {
  position: relative;
  z-index: 3;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #131116;
  box-shadow: 0 0 55px rgba(183, 137, 84, 0.22);
}

.maeu-number-map > div small {
  color: var(--maeu-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.maeu-number-map > div strong {
  color: var(--maeu-accent-2);
  font-family: var(--maeu-serif);
  font-size: 65px;
  line-height: 1;
}

.maeu-number-map > div p {
  margin: 5px 0 0;
  color: var(--maeu-muted);
  font-size: 9px;
}

.maeu-number-map > span {
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--maeu-line);
  border-radius: 18px;
  background: var(--maeu-panel-2);
  color: var(--maeu-accent-2);
  font-size: 22px;
  font-weight: 900;
}

.maeu-number-map .n1 { left: 9%; top: 16%; }
.maeu-number-map .n2 { right: 9%; top: 16%; }
.maeu-number-map .n3 { right: 9%; bottom: 16%; }
.maeu-number-map .n4 { left: 9%; bottom: 16%; }

/* Human Design abstract bodygraph */
.maeu-bodygraph {
  position: relative;
  width: min(360px, 100%);
  height: 520px;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.35));
}

.maeu-bodygraph > span {
  position: absolute;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(224, 189, 129, 0.55);
  background: var(--maeu-panel);
  box-shadow: inset 0 0 25px rgba(183, 137, 84, 0.13);
}

.maeu-bodygraph .c1 { top: 18px; width: 60px; height: 60px; }
.maeu-bodygraph .c2 { top: 116px; border-radius: 50%; transform: translateX(-50%); }
.maeu-bodygraph .c3 { top: 222px; }
.maeu-bodygraph .c4 { top: 330px; border-radius: 50%; transform: translateX(-50%); }
.maeu-bodygraph .c5 { top: 430px; width: 60px; height: 60px; }
.maeu-bodygraph .c6 { top: 226px; left: 22%; width: 58px; height: 58px; }

.maeu-bodygraph > i {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 55px;
  transform: translateX(-50%);
  background: linear-gradient(var(--maeu-accent-2), var(--maeu-accent));
  box-shadow: 0 0 10px rgba(224, 189, 129, 0.35);
}

.maeu-bodygraph .l1 { top: 75px; }
.maeu-bodygraph .l2 { top: 180px; }
.maeu-bodygraph .l3 { top: 286px; }
.maeu-bodygraph .l4 { top: 390px; }

/* Palm */
.maeu-hand {
  position: relative;
  width: 330px;
  height: 520px;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.35));
}

.maeu-hand__palm {
  position: absolute;
  left: 67px;
  top: 190px;
  width: 205px;
  height: 255px;
  border: 2px solid rgba(224, 189, 129, 0.45);
  border-radius: 46% 46% 42% 42% / 38% 38% 58% 58%;
  background: linear-gradient(145deg, rgba(183, 137, 84, 0.23), var(--maeu-panel));
}

.maeu-hand > i {
  position: absolute;
  top: 36px;
  width: 40px;
  border: 2px solid rgba(224, 189, 129, 0.45);
  border-radius: 25px 25px 12px 12px;
  background: var(--maeu-panel);
}

.maeu-hand .f1 { left: 76px; height: 195px; transform: rotate(-7deg); }
.maeu-hand .f2 { left: 124px; height: 222px; top: 12px; }
.maeu-hand .f3 { left: 173px; height: 210px; top: 23px; }
.maeu-hand .f4 { left: 222px; height: 177px; top: 58px; transform: rotate(7deg); }
.maeu-hand .thumb { left: 270px; top: 235px; width: 52px; height: 144px; transform: rotate(36deg); }

.maeu-hand > b {
  position: absolute;
  z-index: 3;
  left: 102px;
  width: 135px;
  height: 70px;
  border-top: 2px solid rgba(224, 189, 129, 0.7);
  border-radius: 50%;
}

.maeu-hand .line1 { top: 265px; transform: rotate(8deg); }
.maeu-hand .line2 { top: 315px; transform: rotate(-6deg); }
.maeu-hand .line3 { top: 365px; width: 115px; left: 117px; transform: rotate(11deg); }

.maeu-hand small {
  position: absolute;
  left: 70px;
  bottom: 10px;
  right: 20px;
  color: var(--maeu-muted);
  font-size: 11px;
  text-align: center;
}

/* Relations */
.maeu-relations {
  position: relative;
  width: min(500px, 100%);
  min-height: 450px;
}

.maeu-relations__wheel {
  position: absolute;
  top: 35px;
  width: 270px;
  height: 270px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 189, 129, 0.38);
  border-radius: 50%;
  background:
    repeating-conic-gradient(transparent 0 29deg, rgba(224, 189, 129, 0.25) 30deg 30.7deg),
    radial-gradient(circle, transparent 0 46%, rgba(183, 137, 84, 0.1) 47% 48%, transparent 49%);
  color: var(--maeu-accent-2);
  font-family: var(--maeu-serif);
  font-size: 48px;
}

.maeu-relations__wheel.is-a { left: 0; }
.maeu-relations__wheel.is-b { right: 0; opacity: 0.75; }

.maeu-relations > span {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 132px;
  transform: translateX(-50%);
  color: #fff0d7;
  font-size: 70px;
  text-shadow: 0 0 30px rgba(224, 189, 129, 0.45);
}

.maeu-relations article {
  position: absolute;
  left: 55px;
  right: 55px;
  bottom: 30px;
  padding: 22px;
  display: grid;
  text-align: center;
  border: 1px solid var(--maeu-line);
  border-radius: 20px;
  background: rgba(26, 25, 29, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--maeu-shadow);
}

.maeu-relations article strong {
  font-size: 16px;
}

.maeu-relations article small {
  margin-top: 5px;
  color: var(--maeu-muted);
  font-size: 10px;
}

/* Vedic */
.maeu-vedic {
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid var(--maeu-line);
  border-radius: 28px;
  background: var(--maeu-panel);
  box-shadow: var(--maeu-shadow);
  text-align: center;
}

.maeu-vedic__grid {
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  transform: rotate(45deg) scale(0.72);
  border: 1px solid rgba(224, 189, 129, 0.45);
}

.maeu-vedic__grid span {
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 189, 129, 0.25);
  color: var(--maeu-accent-2);
  font-size: 11px;
  font-weight: 900;
  transform: rotate(-45deg);
}

.maeu-vedic strong,
.maeu-vedic small {
  display: block;
}

.maeu-vedic strong {
  margin-top: -25px;
  font-family: var(--maeu-serif);
  font-size: 33px;
  font-weight: 500;
}

.maeu-vedic small {
  margin-top: 5px;
  color: var(--maeu-muted);
  font-size: 10px;
}

/* Transits */
.maeu-transits {
  width: min(500px, 100%);
  padding: 30px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--maeu-line);
  border-radius: 28px;
  background: var(--maeu-panel);
  box-shadow: var(--maeu-shadow);
}

.maeu-transits__orbit {
  position: relative;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(224, 189, 129, 0.33);
  border-radius: 50%;
}

.maeu-transits__orbit::before,
.maeu-transits__orbit::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px dashed rgba(224, 189, 129, 0.2);
  border-radius: 50%;
}

.maeu-transits__orbit::after {
  inset: 70px;
  background: rgba(183, 137, 84, 0.12);
}

.maeu-transits__orbit i {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--maeu-accent-2);
  box-shadow: 0 0 14px rgba(224, 189, 129, 0.45);
}

.maeu-transits__orbit i:first-child { left: 15px; top: 98px; }
.maeu-transits__orbit i:nth-child(2) { right: 35px; top: 31px; width: 10px; height: 10px; }
.maeu-transits__orbit i:nth-child(3) { right: 26px; bottom: 41px; width: 8px; height: 8px; }

.maeu-transits__orbit span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--maeu-accent-2);
  font-size: 30px;
}

.maeu-transits article small,
.maeu-transits article strong {
  display: block;
}

.maeu-transits article small {
  color: var(--maeu-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.maeu-transits article strong {
  margin-top: 6px;
  font-size: 19px;
}

.maeu-transits article > div {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.maeu-transits article > div span {
  position: relative;
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--maeu-panel-3);
}

.maeu-transits article > div span::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--maeu-accent), var(--maeu-accent-2));
}

/* Rich layout */
.maeu-rich-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.maeu-rich-layout:not(:has(.maeu-rich-aside)) {
  grid-template-columns: 1fr;
}

.maeu-rich-content {
  max-width: 850px;
}

.maeu-rich-aside {
  position: sticky;
  top: calc(var(--maeu-header) + 30px);
  padding: 22px;
  border: 1px solid rgba(183, 137, 84, 0.16);
  border-radius: 20px;
  background: #fbf5ed;
  color: #785a44;
  font-family: var(--maeu-serif);
  font-size: 20px;
  line-height: 1.45;
}

.maeu-section--deep .maeu-rich-aside,
.maeu-section--gold .maeu-rich-aside {
  background: rgba(183, 137, 84, 0.08);
  color: var(--maeu-accent-pale);
}

.maeu-rich-content h3 {
  margin: 36px 0 10px;
  font-size: 23px;
}

.maeu-rich-content h3:first-of-type {
  margin-top: 0;
}

.maeu-rich-content > p,
.maeu-rich-content .maeu-prose {
  color: var(--maeu-ink-muted);
}

.maeu-section--deep .maeu-rich-content > p,
.maeu-section--gold .maeu-rich-content > p {
  color: var(--maeu-muted);
}

/* Quote */
.maeu-quote {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 55px 70px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(16, 15, 18, 0.38);
  text-align: center;
  box-shadow: var(--maeu-shadow);
}

.maeu-quote > span {
  display: block;
  height: 45px;
  color: var(--maeu-accent-2);
  font-family: var(--maeu-serif);
  font-size: 85px;
  line-height: 1;
}

.maeu-quote p {
  margin: 0;
  font-family: var(--maeu-serif);
  font-size: clamp(27px, 4vw, 45px);
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.maeu-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--maeu-muted);
  font-size: 12px;
  font-style: normal;
}

/* Metrics */
.maeu-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--maeu-line);
  border-radius: 24px;
  background: var(--maeu-panel);
}

.maeu-metrics > div {
  min-height: 145px;
  padding: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 1px solid var(--maeu-line);
  text-align: center;
}

.maeu-metrics > div:last-child {
  border-right: 0;
}

.maeu-metrics strong {
  color: var(--maeu-accent-2);
  font-family: var(--maeu-serif);
  font-size: 45px;
  font-weight: 500;
}

.maeu-metrics span {
  margin-top: 5px;
  color: var(--maeu-muted);
  font-size: 11px;
}

/* Contact */
.maeu-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: start;
}

.maeu-contact-copy .maeu-section-head {
  margin-bottom: 0;
}

.maeu-contact-details {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.maeu-contact-details > a,
.maeu-contact-details > div {
  padding: 15px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(33, 28, 26, 0.09);
  border-radius: 15px;
  background: #fff;
}

.maeu-contact-details > a > span,
.maeu-contact-details > div > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f5eee6;
  color: #8f5b34;
}

.maeu-contact-details small,
.maeu-contact-details strong,
.maeu-contact-details p {
  display: block;
}

.maeu-contact-details small {
  color: var(--maeu-ink-muted);
  font-size: 10px;
}

.maeu-contact-details strong {
  margin-top: 2px;
  font-size: 13px;
}

.maeu-contact-details p {
  margin: 5px 0 0;
  color: var(--maeu-ink-muted);
  font-size: 11px;
}

.maeu-contact-card {
  padding: 30px;
  border: 1px solid rgba(33, 28, 26, 0.09);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--maeu-shadow-light);
}

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

.maeu-field {
  display: grid;
  gap: 7px;
}

.maeu-field--wide {
  grid-column: 1 / -1;
}

.maeu-field > span {
  color: #5b534e;
  font-size: 12px;
  font-weight: 800;
}

.maeu-field input,
.maeu-field select,
.maeu-field textarea,
.search-form input[type="search"] {
  width: 100%;
  border: 1px solid rgba(33, 28, 26, 0.13);
  border-radius: 13px;
  background: #f8f5f1;
  color: var(--maeu-ink);
  outline: 0;
}

.maeu-field input,
.maeu-field select,
.search-form input[type="search"] {
  min-height: 48px;
  padding: 0 13px;
}

.maeu-field textarea {
  min-height: 160px;
  padding: 12px 13px;
  resize: vertical;
}

.maeu-field input:focus,
.maeu-field select:focus,
.maeu-field textarea:focus,
.search-form input[type="search"]:focus {
  border-color: rgba(143, 91, 52, 0.55);
  box-shadow: 0 0 0 3px rgba(183, 137, 84, 0.12);
}

.maeu-consent {
  margin: 17px 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: var(--maeu-ink-muted);
  font-size: 11px;
  line-height: 1.55;
}

.maeu-consent input {
  margin-top: 3px;
}

.maeu-consent a {
  color: #80502f;
  text-decoration: underline;
}

.maeu-form-fineprint {
  margin: 13px 0 0;
  color: #89817b;
  font-size: 10px;
  line-height: 1.55;
}

.maeu-honeypot {
  position: absolute;
  left: -9999px;
}

.maeu-form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  display: grid;
  border-radius: 13px;
  font-size: 12px;
}

.maeu-form-message--success {
  background: #e8f7ef;
  color: #176640;
}

.maeu-form-message--error {
  background: #fbeaea;
  color: #8d3434;
}

/* Help embed */
.maeu-help-embed {
  overflow: hidden;
  border-radius: 26px;
}

/* Legal */
.maeu-legal-shell {
  max-width: 920px;
}

.maeu-legal-warning {
  padding: 26px;
  border: 1px solid #e3c99f;
  border-left: 5px solid #ad7448;
  border-radius: 18px;
  background: #fff8ee;
  color: #6d4c33;
}

.maeu-legal-warning strong {
  font-size: 18px;
}

.maeu-legal-warning p {
  margin: 8px 0 0;
}

/* Posts and archives */
.maeu-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.maeu-post-card {
  overflow: hidden;
  border: 1px solid rgba(33, 28, 26, 0.09);
  border-radius: 22px;
  background: #fff;
  color: var(--maeu-ink);
  box-shadow: var(--maeu-shadow-light);
}

.maeu-post-card__image {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(224, 189, 129, 0.22), transparent 30%),
    linear-gradient(145deg, #221d23, #100f12);
}

.maeu-post-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.maeu-post-card:hover .maeu-post-card__image img {
  transform: scale(1.035);
}

.maeu-post-card__image > span {
  color: var(--maeu-accent-2);
  font-size: 70px;
}

.maeu-post-card__body {
  padding: 23px;
}

.maeu-post-card__meta {
  color: #8d8178;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.maeu-post-card h2,
.maeu-post-card h3 {
  margin: 10px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.maeu-post-card p {
  margin: 11px 0 0;
  color: var(--maeu-ink-muted);
  font-size: 13px;
}

.maeu-empty {
  padding: 60px 30px;
  border: 1px dashed rgba(143, 91, 52, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--maeu-ink);
  text-align: center;
}

.maeu-empty .maeu-icon {
  margin: 0 auto 17px;
}

.maeu-empty h2,
.maeu-empty h3 {
  margin: 0;
}

.maeu-empty p {
  max-width: 630px;
  margin: 10px auto 0;
  color: var(--maeu-ink-muted);
}

.maeu-archive-hero,
.maeu-article__hero {
  padding: calc(var(--maeu-header) + 85px) 0 75px;
  background:
    radial-gradient(circle at 80% 25%, rgba(183, 137, 84, 0.14), transparent 25%),
    linear-gradient(155deg, #151217, #0d0c0f);
}

.maeu-archive-hero h1,
.maeu-article__hero h1 {
  max-width: 960px;
  font-size: clamp(44px, 6vw, 75px);
}

.maeu-archive-hero .maeu-section-lead {
  max-width: 720px;
}

.search-form {
  max-width: 620px;
  margin-top: 24px;
  display: flex;
  gap: 8px;
}

.search-form label {
  flex: 1;
}

.search-form .search-submit {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--maeu-accent-2), var(--maeu-accent));
  color: #21150d;
  font-weight: 850;
}

.maeu-pagination {
  margin-top: 35px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.nav-links .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 11px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 28, 26, 0.1);
  border-radius: 11px;
  background: #fff;
  color: var(--maeu-ink);
}

.nav-links .page-numbers.current {
  background: #2b211a;
  color: #fff;
}

/* Article */
.maeu-article__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--maeu-muted);
  font-size: 12px;
}

.maeu-article__image {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.maeu-article__image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--maeu-shadow);
}

.maeu-article__layout {
  padding: 75px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 80px;
  align-items: start;
}

.maeu-prose--article,
.maeu-prose--page {
  color: #d1cad2;
  font-size: 17px;
  line-height: 1.9;
}

.maeu-prose--page {
  max-width: 900px;
  margin: 0 auto;
  color: var(--maeu-ink-muted);
}

.maeu-prose--article h2,
.maeu-prose--article h3,
.maeu-prose--article h4,
.maeu-prose--page h2,
.maeu-prose--page h3,
.maeu-prose--page h4 {
  color: var(--maeu-text);
  line-height: 1.25;
}

.maeu-prose--page h2,
.maeu-prose--page h3,
.maeu-prose--page h4 {
  color: var(--maeu-ink);
}

.maeu-prose--article h2,
.maeu-prose--page h2 {
  margin: 2em 0 0.65em;
  font-family: var(--maeu-serif);
  font-size: 38px;
  font-weight: 500;
}

.maeu-prose--article h3,
.maeu-prose--page h3 {
  margin: 1.8em 0 0.6em;
  font-size: 25px;
}

.maeu-prose--article a,
.maeu-prose--page a {
  color: var(--maeu-accent-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.maeu-prose--page a {
  color: #8f5b34;
}

.maeu-prose--article blockquote,
.maeu-prose--page blockquote {
  margin: 2em 0;
  padding: 22px 26px;
  border-left: 4px solid var(--maeu-accent);
  background: var(--maeu-panel);
  border-radius: 0 16px 16px 0;
}

.maeu-prose--page blockquote {
  background: #f7f0e8;
}

.maeu-prose--article img,
.maeu-prose--page img {
  border-radius: 18px;
}

.maeu-article__aside {
  position: sticky;
  top: calc(var(--maeu-header) + 30px);
}

.maeu-sticky-card {
  padding: 24px;
  border: 1px solid var(--maeu-line);
  border-radius: 22px;
  background: var(--maeu-panel);
}

.maeu-sticky-card > strong {
  color: var(--maeu-accent-2);
  font-size: 19px;
}

.maeu-sticky-card p {
  color: var(--maeu-muted);
  font-size: 13px;
}

.maeu-sticky-card .maeu-button {
  width: 100%;
}

.maeu-page-title {
  margin-bottom: 45px;
}

.maeu-page-title h1 {
  font-size: clamp(44px, 6vw, 72px);
}

/* Error */
.maeu-error-page {
  min-height: 760px;
  padding: calc(var(--maeu-header) + 90px) 0 90px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(183, 137, 84, 0.17), transparent 26%),
    var(--maeu-bg);
  text-align: center;
}

.maeu-error-page__number {
  color: rgba(224, 189, 129, 0.12);
  font-family: var(--maeu-serif);
  font-size: clamp(130px, 25vw, 310px);
  line-height: 0.7;
}

.maeu-error-page h1 {
  max-width: 800px;
  margin: 30px auto 0;
  font-size: clamp(43px, 6vw, 72px);
}

.maeu-error-page > .maeu-shell > p:not(.maeu-eyebrow) {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--maeu-muted);
}

.maeu-error-page .maeu-buttons {
  justify-content: center;
}

/* Footer */
.maeu-footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--maeu-line);
  background: #0c0b0e;
}

.maeu-footer__top {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 80px;
}

.maeu-footer__brand > p {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--maeu-muted);
  font-size: 13px;
}

.maeu-footer__brand .maeu-button {
  margin-top: 25px;
}

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

.maeu-footer__columns h2 {
  margin: 0 0 18px;
  color: var(--maeu-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.maeu-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.maeu-footer-menu a {
  color: #928c95;
  font-size: 12px;
}

.maeu-footer-menu a:hover {
  color: var(--maeu-accent-2);
}

.maeu-footer__notice {
  margin-top: 56px;
  padding: 17px 19px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--maeu-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.maeu-footer__notice > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(183, 137, 84, 0.1);
  color: var(--maeu-accent-2);
  font-weight: 900;
}

.maeu-footer__notice p {
  margin: 0;
  color: #88828c;
  font-size: 10px;
  line-height: 1.55;
}

.maeu-footer__bottom {
  margin-top: 25px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--maeu-line);
}

.maeu-footer__bottom p {
  margin: 0 0 5px;
  color: #6f6a73;
  font-size: 9px;
}

.maeu-footer__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.maeu-footer__meta > a {
  color: #8d8791;
  font-size: 10px;
}

.maeu-lang--footer .maeu-lang__menu {
  bottom: calc(100% + 10px);
  top: auto;
}

/* WooCommerce baseline */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
  color: var(--maeu-muted);
}

.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-MyAccount-content,
.woocommerce-MyAccount-navigation {
  padding: 22px;
  border: 1px solid var(--maeu-line);
  border-radius: 20px;
  background: var(--maeu-panel);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--maeu-accent-2), var(--maeu-accent));
  color: #21150d;
}

.woocommerce input.input-text,
.woocommerce select,
.woocommerce textarea {
  border: 1px solid var(--maeu-line);
  border-radius: 12px;
  background: var(--maeu-panel-2);
  color: var(--maeu-text);
}

/* Reveals */
.maeu-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.maeu-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes maeu-spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1160px) {
  :root { --maeu-shell: 1040px; }
  .maeu-header__login { display: none; }
  .maeu-header__nav .maeu-menu > li > a { padding-inline: 9px; font-size: 13px; }
  .maeu-hero__grid { grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr); gap: 45px; }
  .maeu-app-mock { transform: none; }
  .maeu-card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .maeu-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .maeu-price-card--featured { transform: none; }
  .maeu-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .maeu-footer__top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 960px) {
  :root { --maeu-header: 70px; }
  body.admin-bar .maeu-header { top: 46px; }
  .maeu-header__nav {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(410px, 92vw);
    padding: 20px;
    overflow-y: auto;
    background: #111014;
    border-left: 1px solid var(--maeu-line);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.45);
    transform: translateX(105%);
    transition: transform 0.24s ease;
  }
  .maeu-header__nav.is-open { transform: translateX(0); }
  .maeu-mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
  .maeu-mobile-nav__actions { display: grid; gap: 9px; margin-top: 24px; }
  .maeu-mobile-nav__actions .maeu-button { width: 100%; }
  .maeu-menu { display: grid; gap: 4px; }
  .maeu-menu > li > a { min-height: 50px; padding: 0 14px; font-size: 15px; }
  .maeu-menu .sub-menu { position: static; width: auto; padding: 4px 0 4px 15px; border: 0; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .maeu-menu .sub-menu a { padding: 8px 12px; }
  .maeu-menu-toggle { display: block; }
  .maeu-header__cta { display: none; }
  .maeu-mobile-backdrop { position: fixed; z-index: 1100; inset: 0; display: block; background: rgba(0, 0, 0, 0.62); opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease; }
  .maeu-mobile-backdrop.is-open { opacity: 1; visibility: visible; }
  .maeu-menu-open { overflow: hidden; }
  .maeu-hero { min-height: auto; }
  .maeu-hero__grid,
  .maeu-split,
  .maeu-ai-grid,
  .maeu-language-block,
  .maeu-security-grid,
  .maeu-faq-layout,
  .maeu-contact-layout { grid-template-columns: 1fr; }
  .maeu-hero__copy { max-width: 780px; }
  .maeu-hero__visual { margin-top: 20px; }
  .maeu-split--reverse .maeu-split__copy,
  .maeu-split--reverse .maeu-split__visual { order: initial; }
  .maeu-split__visual { margin-top: 8px; }
  .maeu-faq-layout__head { position: static; }
  .maeu-language-block { gap: 30px; }
  .maeu-language-orbit { min-height: 400px; }
  .maeu-contact-card { padding: 24px; }
  .maeu-rich-layout { grid-template-columns: 1fr; gap: 35px; }
  .maeu-rich-aside { position: static; }
  .maeu-article__layout { grid-template-columns: 1fr; gap: 35px; }
  .maeu-article__aside { position: static; }
  .maeu-footer__columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .maeu-shell { width: min(100% - 28px, var(--maeu-shell)); }
  .maeu-brand__mark { width: 43px; height: 43px; flex-basis: 43px; border-radius: 14px; }
  .maeu-brand__copy strong { font-size: 16px; }
  .maeu-brand__copy small { display: none; }
  .maeu-lang--header .maeu-lang__toggle { min-width: 48px; padding-inline: 8px; }
  .maeu-lang--header .maeu-lang__toggle > span:first-child { display: none; }
  .maeu-hero { padding: calc(var(--maeu-header) + 62px) 0 70px; }
  .maeu-hero h1 { font-size: clamp(43px, 13vw, 67px); }
  .maeu-hero__lead { font-size: 16px; }
  .maeu-buttons { display: grid; grid-template-columns: 1fr; width: 100%; }
  .maeu-buttons .maeu-button { width: 100%; }
  .maeu-app-mock { min-height: 430px; grid-template-columns: 58px 1fr; border-radius: 22px; }
  .maeu-app-mock__sidebar { padding-inline: 7px; }
  .maeu-app-mock__sidebar > span { width: 38px; height: 38px; }
  .maeu-app-mock__main { padding: 17px; }
  .maeu-app-mock__stats { grid-template-columns: repeat(3, 1fr); }
  .maeu-app-mock__stats article { min-height: 76px; padding: 10px; }
  .maeu-app-mock__stats strong { font-size: 22px; }
  .maeu-app-mock__content { grid-template-columns: 1fr; }
  .maeu-app-mock__list { display: none; }
  .maeu-app-mock__profile { min-height: 220px; }
  .maeu-trust__grid { grid-template-columns: 1fr 1fr; }
  .maeu-trust__item { border-bottom: 1px solid var(--maeu-line); }
  .maeu-trust__item:nth-child(odd) { border-left: 0; }
  .maeu-trust__item:last-child { border-right: 0; }
  .maeu-section { padding: 76px 0; }
  .maeu-section-head { margin-bottom: 30px; }
  .maeu-section-head h2 { font-size: clamp(36px, 11vw, 52px); }
  .maeu-section-lead { font-size: 16px; }
  .maeu-card-grid--2,
  .maeu-card-grid--3,
  .maeu-card-grid--4,
  .maeu-price-grid,
  .maeu-steps,
  .maeu-post-grid,
  .maeu-metrics { grid-template-columns: 1fr; }
  .maeu-card { min-height: 230px; }
  .maeu-price-card > p { min-height: auto; }
  .maeu-timeline::before { left: 27px; }
  .maeu-timeline article { padding-left: 76px; }
  .maeu-timeline article > span { width: 56px; height: 56px; }
  .maeu-language-orbit { min-height: 500px; }
  .maeu-language-orbit::before { width: 300px; height: 300px; }
  .maeu-language-orbit::after { width: 225px; height: 225px; }
  .maeu-language-pills span { min-width: 95px; padding: 7px 9px; }
  .maeu-language-pills span:nth-child(1) { left: 0; top: 12%; }
  .maeu-language-pills span:nth-child(2) { right: 0; top: 12%; }
  .maeu-language-pills span:nth-child(3) { right: 0; top: 42%; }
  .maeu-language-pills span:nth-child(4) { right: 4%; bottom: 9%; }
  .maeu-language-pills span:nth-child(5) { left: 35%; bottom: 0; }
  .maeu-language-pills span:nth-child(6) { left: 2%; bottom: 11%; }
  .maeu-language-pills span:nth-child(7) { left: 0; top: 42%; }
  .maeu-ai-demo__prompt { margin-left: 45px; }
  .maeu-ai-demo__answer { margin-right: 45px; }
  .maeu-cta { grid-template-columns: 1fr; padding: 37px 26px; }
  .maeu-cta .maeu-buttons { justify-content: flex-start; }
  .maeu-wheel-card { padding: 20px; }
  .maeu-system-orbit > span { width: 64px; height: 64px; border-radius: 18px; }
  .maeu-system-orbit__core { width: 145px; height: 145px; }
  .maeu-bazi { grid-template-columns: 1fr 1fr; }
  .maeu-bazi > div { min-height: 190px; }
  .maeu-transits { grid-template-columns: 1fr; }
  .maeu-transits__orbit { margin-inline: auto; }
  .maeu-contact-layout { gap: 35px; }
  .maeu-form-grid { grid-template-columns: 1fr; }
  .maeu-field--wide { grid-column: auto; }
  .maeu-footer { padding-top: 60px; }
  .maeu-footer__columns { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .maeu-footer__bottom { flex-direction: column; }
  .maeu-footer__meta { justify-content: space-between; }
  .maeu-article__hero,
  .maeu-archive-hero { padding: calc(var(--maeu-header) + 65px) 0 58px; }
  .maeu-article__layout { padding-block: 55px 80px; }
  .maeu-quote { padding: 42px 24px; }
  .maeu-metrics > div { border-right: 0; border-bottom: 1px solid var(--maeu-line); }
  .maeu-metrics > div:last-child { border-bottom: 0; }
}

@media (max-width: 480px) {
  .maeu-header__actions { gap: 6px; }
  .maeu-brand__copy strong { font-size: 15px; }
  .maeu-menu-toggle { width: 42px; height: 42px; }
  .maeu-hero h1 { font-size: 43px; }
  .maeu-trust__grid { grid-template-columns: 1fr; }
  .maeu-trust__item { border-left: 0; }
  .maeu-card { padding: 21px; }
  .maeu-ai-demo__prompt { margin: 16px 16px 0 30px; }
  .maeu-ai-demo__answer { margin: 12px 30px 0 16px; grid-template-columns: 32px 1fr; }
  .maeu-ai-demo__avatar { width: 32px; height: 32px; }
  .maeu-ai-demo__notice { margin: 16px; }
  .maeu-language-orbit { transform: scale(0.9); margin-inline: -20px; }
  .maeu-system-orbit { transform: scale(0.9); }
  .maeu-relations__wheel { width: 220px; height: 220px; }
  .maeu-relations > span { top: 108px; }
  .maeu-report-mock { padding: 20px 38px 20px 10px; }
  .maeu-report-mock__paper { min-height: 430px; padding: 24px; }
  .maeu-report-mock__pdf { right: 0; width: 65px; height: 65px; }
  .maeu-footer__columns { grid-template-columns: 1fr; }
}

@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; }
  .maeu-reveal { opacity: 1; transform: none; }
}

@media print {
  .maeu-header,
  .maeu-footer,
  .maeu-buttons,
  .maeu-language-notice,
  .maeu-article__aside { display: none !important; }
  body { background: #fff; color: #000; }
  .maeu-section,
  .maeu-article__layout { padding: 20px 0; background: #fff !important; color: #000 !important; }
  .maeu-card,
  .maeu-step,
  .maeu-price-card { break-inside: avoid; box-shadow: none; }
}
