:root {
      --orange: #e39a25;
      --orange-deep: #f24a22;
      --gold: #ffc94d;
      --blue: #176dff;
      --ink: #171717;
      --paper: #ffffff;
      --soft: #f7f7f4;
      --muted: #687078;
      --line: rgba(23, 23, 23, 0.12);
      --shadow: 0 24px 60px rgba(23, 23, 23, 0.14);
      --radius: 8px;
      font-family: Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: var(--soft);
      color: var(--ink);
      letter-spacing: 0;
    }

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

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

    .container {
      width: min(1160px, calc(100% - 36px));
      margin: 0 auto;
    }

    .topbar {
      background: #df9926;
      box-shadow: 0 8px 22px rgba(23, 23, 23, 0.12);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .topbar-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 190px;
    }

    .brand-mark {
      width: 74px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, #ffffff 0%, #ffe6a2 34%, #1583ff 35%, #0d49b9 100%);
      color: #101010;
      font-size: 19px;
      font-weight: 950;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65), 0 12px 26px rgba(34, 67, 130, 0.22);
    }

    .brand-title strong {
      display: block;
      color: #fff;
      font-size: 34px;
      line-height: 0.95;
      font-weight: 950;
      text-shadow: 0 3px 0 rgba(23, 23, 23, 0.14);
    }

    .brand-title span {
      display: block;
      margin-top: 4px;
      color: #0b57d0;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      color: #045fd5;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .nav a:first-child {
      color: #ff3b1d;
    }

    .top-action,
    .btn,
    .read-more {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0 22px;
      background: linear-gradient(135deg, #ff3d1e, #ff7d22);
      color: #fff;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      box-shadow: 0 12px 24px rgba(242, 74, 34, 0.28);
      white-space: nowrap;
    }

    .hero {
      background: #fff;
      padding: 54px 0 38px;
    }

    .hero-frame {
      min-height: 582px;
      border-radius: var(--radius);
      overflow: hidden;
      display: grid;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.94) 0%, rgba(7, 8, 11, 0.78) 42%, rgba(7, 8, 11, 0.18) 74%, rgba(7, 8, 11, 0.04) 100%),
        url("/assets/mmoo-hero-simple.png") center / cover no-repeat;
      box-shadow: var(--shadow);
      color: #fff;
    }

    .hero-content {
      width: min(620px, 100%);
      padding: 64px 46px;
    }

    .hero h1 {
      margin: 0;
      color: #fff;
      font-size: clamp(48px, 6.6vw, 84px);
      line-height: 0.92;
      font-weight: 950;
      text-transform: uppercase;
      text-wrap: balance;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero-text {
      max-width: 560px;
      margin: 24px 0 28px;
      color: rgba(255,255,255,0.85);
      font-size: 17px;
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn.secondary {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.26);
      box-shadow: none;
      color: #fff;
    }

    .hero-stats {
      width: min(760px, calc(100% - 64px));
      margin: -54px auto 0;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.44);
      box-shadow: 0 22px 46px rgba(23, 23, 23, 0.18);
    }

    .hero-stat {
      padding: 20px 24px;
      min-height: 104px;
      background: #111;
      color: #fff;
      border-right: 1px solid rgba(255,255,255,0.16);
    }

    .hero-stat:last-child {
      border-right: 0;
    }

    .hero-stat strong {
      display: block;
      margin-bottom: 8px;
      color: var(--gold);
      font-size: 34px;
      line-height: 1;
      font-weight: 950;
    }

    .hero-stat span {
      color: rgba(255,255,255,0.78);
      font-size: 13px;
      line-height: 1.35;
      font-weight: 800;
    }

    .content-card {
      margin: 56px auto 0;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(23, 23, 23, 0.08);
      padding: clamp(28px, 5vw, 58px);
    }

    .intro-title {
      margin: 0 0 18px;
      text-align: center;
      color: #1d63ff;
      font-size: clamp(30px, 4.4vw, 50px);
      line-height: 1.05;
      font-weight: 950;
      text-transform: uppercase;
    }

    .lead {
      max-width: 900px;
      margin: 0 auto 34px;
      padding-left: 24px;
      border-left: 3px solid var(--orange-deep);
      color: #363b40;
      font-size: 18px;
      line-height: 1.75;
      font-style: italic;
    }

    .lead strong {
      color: var(--orange-deep);
    }

    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 28px;
      align-items: start;
    }

    .main-copy h2,
    .side-panel h2,
    .section-title {
      margin: 0 0 16px;
      color: #171717;
      font-size: clamp(28px, 3.8vw, 44px);
      line-height: 1.1;
      font-weight: 950;
    }

    .main-copy h3 {
      margin: 26px 0 10px;
      color: #171717;
      font-size: 24px;
      line-height: 1.22;
      font-weight: 950;
    }

    .main-copy p {
      color: #3d454c;
      font-size: 16px;
      line-height: 1.78;
      margin: 0 0 18px;
    }

    .wide-image {
      margin: 24px 0;
      border-radius: var(--radius);
      min-height: 320px;
      background:
        linear-gradient(180deg, rgba(7,8,11,0.0), rgba(7,8,11,0.35)),
        url("/assets/mmoo-hero-simple.png") center / cover no-repeat;
      box-shadow: 0 18px 44px rgba(23, 23, 23, 0.16);
      position: relative;
      overflow: hidden;
    }

    .wide-image-caption {
      position: absolute;
      left: 24px;
      bottom: 20px;
      color: #fff;
      font-size: 32px;
      line-height: 1.05;
      font-weight: 950;
      text-shadow: 0 3px 14px rgba(0,0,0,0.44);
    }

    .side-panel {
      position: sticky;
      top: 104px;
      display: grid;
      gap: 14px;
    }

    .side-box {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #fff;
      padding: 18px;
      box-shadow: 0 14px 32px rgba(23, 23, 23, 0.08);
    }

    .side-box strong {
      display: block;
      color: var(--orange-deep);
      font-size: 15px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .side-box span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .feature-band {
      margin-top: 36px;
      padding: 34px;
      border-radius: var(--radius);
      background:
        linear-gradient(105deg, rgba(15, 15, 15, 0.95), rgba(25, 46, 94, 0.92) 56%, rgba(227, 154, 37, 0.92)),
        url("/assets/mmoo-hero-simple.png") center / cover no-repeat;
      color: #fff;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .feature-band h2 {
      margin: 0 0 12px;
      font-size: clamp(28px, 3.8vw, 44px);
      line-height: 1.05;
      font-weight: 950;
    }

    .feature-band p {
      margin: 0;
      color: rgba(255,255,255,0.8);
      line-height: 1.65;
    }

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

    .feature-item {
      padding: 18px;
      border-radius: 7px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.1);
    }

    .feature-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--gold);
      font-size: 20px;
    }

    .steps-section {
      padding: 64px 0;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .panel {
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      padding: 28px;
      box-shadow: 0 18px 42px rgba(23,23,23,0.08);
    }

    .mini-visual {
      min-height: 210px;
      border-radius: var(--radius);
      background:
        linear-gradient(115deg, rgba(5, 8, 14, 0.9), rgba(23, 109, 255, 0.28), rgba(227, 154, 37, 0.55)),
        url("/assets/mmoo-hero-simple.png") center / cover no-repeat;
      margin-bottom: 18px;
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .step {
      min-height: 170px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      padding: 18px;
      background: #fff;
    }

    .step b {
      width: 40px;
      height: 40px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      color: #111;
      margin-bottom: 18px;
      font-size: 18px;
    }

    .step strong {
      display: block;
      color: #171717;
      font-size: 16px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .step span {
      display: block;
      height: 8px;
      width: 78%;
      border-radius: 999px;
      background: #e8edf3;
      box-shadow: 0 18px 0 #e8edf3;
    }

    .news {
      padding: 66px 0;
      background: #fff;
    }

    .news-head {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
      gap: 30px;
      align-items: end;
      margin-bottom: 28px;
    }

    .news-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

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

    .news-card {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 18px 42px rgba(23,23,23,0.08);
    }

    .news-thumb {
      min-height: 182px;
      padding: 16px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      background:
        linear-gradient(115deg, rgba(7,8,11,0.84), rgba(23, 109, 255, 0.2)),
        url("/assets/mmoo-hero-simple.png") center / cover no-repeat;
      color: #fff;
    }

    .date-box {
      width: 44px;
      min-height: 56px;
      background: #fff;
      color: var(--orange-deep);
      display: grid;
      place-items: center;
      border-left: 3px solid var(--orange-deep);
      font-weight: 950;
      line-height: 1.05;
      text-align: center;
    }

    .news-thumb strong {
      color: rgba(255,255,255,0.88);
      font-size: 40px;
      line-height: 1;
      font-weight: 950;
    }

    .news-body {
      padding: 22px;
    }

    .news-body time {
      display: block;
      margin-bottom: 10px;
      color: var(--orange-deep);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .news-body h3 {
      margin: 0 0 10px;
      color: #171717;
      font-size: 21px;
      line-height: 1.18;
      font-weight: 950;
      text-transform: uppercase;
    }

    .news-body p {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
    }

    .read-more {
      min-height: 36px;
      padding: 0 16px;
      font-size: 12px;
    }

    .footer {
      background: #171717;
      color: #fff;
      padding: 56px 0 34px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
      gap: 34px;
      align-items: start;
    }

    .footer-brand strong {
      display: block;
      color: #34a0ff;
      font-size: 46px;
      line-height: 1;
      font-weight: 950;
      text-shadow: 0 2px 0 #ffb12c;
    }

    .footer p,
    .footer li {
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      font-size: 14px;
    }

    .footer h3 {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 16px;
      text-transform: uppercase;
    }

    .footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .copyright {
      margin-top: 36px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.62);
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .topbar-inner {
        min-height: 68px;
      }

      .nav a:not(:first-child) {
        display: none;
      }

      .top-action {
        padding: 0 16px;
      }

      .hero {
        padding-top: 28px;
      }

      .hero-frame {
        min-height: 640px;
        background:
          linear-gradient(180deg, rgba(7, 8, 11, 0.68) 0%, rgba(7, 8, 11, 0.45) 40%, rgba(7, 8, 11, 0.92) 100%),
          url("/assets/mmoo-hero-simple.png") center / cover no-repeat;
      }

      .hero-content {
        padding: 34px 24px;
        align-self: end;
      }

      .hero h1 {
        font-size: clamp(40px, 13vw, 58px);
      }

      .hero-actions a {
        width: 100%;
      }

      .hero-stats {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        margin-top: -70px;
      }

      .hero-stat {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.14);
      }

      .article-layout,
      .feature-band,
      .split,
      .news-head,
      .news-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 26px, 430px);
      }

      .brand {
        min-width: 0;
      }

      .brand-mark {
        width: 48px;
        height: 38px;
        font-size: 13px;
      }

      .brand-title strong {
        font-size: 23px;
      }

      .brand-title span,
      .top-action {
        display: none;
      }

      .content-card,
      .panel,
      .feature-band {
        padding: 22px;
      }

      .lead {
        padding-left: 16px;
        font-size: 15px;
      }

      .wide-image {
        min-height: 240px;
      }

      .wide-image-caption {
        font-size: 26px;
      }

      .feature-grid,
      .step-grid {
        grid-template-columns: 1fr;
      }
    }
.article-page {
  padding: 54px 0 72px;
  background: var(--soft);
}
.article-layout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}
.article-shell,
.article-side {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.article-shell {
  padding: clamp(28px, 5vw, 56px);
}
.article-shell h1 {
  margin: 0 0 12px;
  color: #171717;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 950;
  text-wrap: balance;
}
.article-meta {
  margin: 0 0 24px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 900;
}
.article-body {
  color: #30383f;
  font-size: 17px;
  line-height: 1.86;
}
.article-body h2,
.article-body h3 {
  margin: 30px 0 12px;
  color: #171717;
  line-height: 1.16;
  font-weight: 950;
}
.article-body p {
  margin: 0 0 18px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 22px 20px;
  padding: 0;
}
.article-body li {
  margin: 0 0 10px;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.article-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.article-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.article-actions a:first-child {
  background: linear-gradient(135deg, #ff3d1e, #ff7d22);
  color: #fff;
  box-shadow: 0 12px 24px rgba(242, 74, 34, 0.22);
}
.article-actions a:last-child {
  border: 1px solid var(--line);
  color: #171717;
  background: #fff;
}
.article-side {
  padding: 22px;
  position: sticky;
  top: 104px;
}
.article-side h2 {
  margin: 0 0 16px;
  color: #171717;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
}
.side-list {
  display: grid;
  gap: 12px;
}
.side-item {
  border-radius: 7px;
  border: 1px solid var(--line);
  padding: 15px;
  background: #fffaf3;
}
.side-item strong {
  display: block;
  color: var(--orange-deep);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}
.side-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .article-layout-page { grid-template-columns: 1fr; }
  .article-side { position: static; }
}
@media (max-width: 560px) {
  .article-shell, .article-side { padding: 22px; }
}