:root {
  color-scheme: light;
  --ink: #181715;
  --muted: #6f6d66;
  --line: #deddd7;
  --paper: #fff;
  --canvas: #f3f3ef;
  --yellow: #ffe229;
  --yellow-deep: #f5cc00;
  --green: #16784b;
  --shadow: 0 24px 70px rgba(31, 29, 21, .11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 280px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(24, 23, 21, .035) 25%, transparent 25%) 0 0 / 34px 34px,
    var(--canvas);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
}

.alert-strip {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 50px;
  margin: 0 auto 18px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: .9rem;
  text-align: center;
}

.alert-strip strong { font-size: 1rem; }
.alert-strip > span:last-child { color: #4c4519; font-weight: 650; }
.alert-badge {
  padding: 4px 8px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-mark img {
  display: block;
  width: 42px;
  height: auto;
  transform: rotate(4deg);
}

.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-size: 1rem; line-height: 1.2; }
.brand-copy small {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.migration-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #55534d;
  font-size: .9rem;
  font-weight: 650;
}

.migration-state i {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(22, 120, 75, .11);
}

.hero {
  position: relative;
  display: grid;
  min-height: 640px;
  padding: clamp(48px, 7vw, 92px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 226, 41, .18) 0 2px, transparent 3px) 0 0 / 22px 22px,
    var(--ink);
  border: 3px solid var(--ink);
  border-radius: 34px;
  box-shadow: var(--shadow), 11px 11px 0 var(--yellow), 14px 14px 0 var(--ink);
}

.hero::before {
  content: "MEIXX";
  position: absolute;
  right: -34px;
  bottom: -48px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.hero-copy,
.route-card { position: relative; z-index: 1; }

.eyebrow,
.section-heading > p {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.eyebrow { color: rgba(255, 255, 255, .66); }
.eyebrow span {
  display: inline-block;
  margin-right: 9px;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  letter-spacing: .08em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.06em;
}

h1 > span {
  color: rgba(255, 255, 255, .75);
  font-size: .54em;
  font-weight: 700;
  letter-spacing: -.035em;
}

h1 mark {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px 9px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 10px;
  box-shadow: 6px 6px 0 #fff;
  letter-spacing: -.055em;
  transform: rotate(-1deg);
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.9;
}

.actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-action {
  display: inline-flex;
  min-height: 66px;
  padding: 0 29px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 5px 5px 0 #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #ffeb62;
  box-shadow: 2px 2px 0 #fff;
  transform: translate(3px, 3px);
}

.countdown-control {
  padding: 10px 0;
  color: rgba(255, 255, 255, .62);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .9rem;
  cursor: pointer;
}

.countdown-control:hover,
.countdown-control:focus-visible { color: #fff; text-decoration: underline; }

.safe-url {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.safe-url strong { color: var(--yellow); letter-spacing: .03em; }

.route-card {
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 28px;
  transform: rotate(2.5deg);
  box-shadow: 10px 10px 0 var(--yellow);
}

.route-brand {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
}

.route-brand img { display: block; width: 39px; height: auto; }

.route-label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 850;
}

.domain {
  display: flex;
  min-height: 68px;
  padding: 14px 16px;
  flex-direction: column;
  justify-content: center;
  border-radius: 14px;
}

.domain span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .74rem;
}

.domain s,
.domain strong { font-size: clamp(1.15rem, 2vw, 1.55rem); letter-spacing: .01em; }
.old-domain { background: #f4f4f0; border: 1px solid var(--line); }
.old-domain s { color: #898781; }
.new-domain { color: var(--ink); background: var(--yellow); }
.new-domain span { color: rgba(24, 23, 21, .58); }
.route-arrow { padding: 8px 0; color: var(--ink); font-size: 1.4rem; text-align: center; }
.route-card p { margin: 20px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }

.information {
  padding: clamp(74px, 10vw, 124px) 0 70px;
}

.section-heading {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 24px;
}

.section-heading > p { margin: 0; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.12; letter-spacing: -.045em; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.info-grid article {
  min-height: 260px;
  padding: 28px 28px 32px;
  background: rgba(255, 255, 255, .48);
  border-right: 1px solid var(--ink);
}

.info-grid article:last-child { border-right: 0; }
.info-grid article:nth-child(2) { background: var(--yellow); }
.info-number { color: var(--muted); font-size: .8rem; font-weight: 800; }
.info-grid h3 { margin: 56px 0 12px; font-size: 1.2rem; }
.info-grid p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.85; }

.alternate-entry {
  display: flex;
  margin-bottom: 72px;
  padding: 28px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--ink);
  border-radius: 22px;
}

.alternate-entry h2 { margin: 0; font-size: 1.45rem; }
.alternate-entry p { margin: 6px 0 0; color: rgba(255, 255, 255, .62); line-height: 1.6; }
.entry-links { display: flex; flex-wrap: wrap; gap: 10px; }
.entry-links a { padding: 12px 17px; color: var(--ink); background: var(--yellow); border-radius: 999px; font-size: .88rem; font-weight: 800; text-decoration: none; }
.entry-links a:last-child { color: #fff; background: rgba(255, 255, 255, .12); }

.site-footer {
  display: grid;
  min-height: 132px;
  padding: 28px 0 34px;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .85rem;
}

.site-footer a { color: var(--ink); font-weight: 750; text-underline-offset: 3px; }
.footer-notice { display: flex; flex-direction: column; gap: 8px; line-height: 1.6; }
.footer-notice strong { color: var(--ink); font-size: .92rem; }
.footer-compliance {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 0;
  line-height: 1.65;
  text-align: right;
}
.footer-compliance > * { display: inline-flex; align-items: center; }
.footer-compliance > *:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  margin: 0 12px;
  background: #c8c7c1;
}

@media (max-width: 820px) {
  .site-header, .alert-strip, main, footer { width: min(100% - 28px, 680px); }
  .site-header { min-height: 78px; }
  .brand-mark { width: 48px; height: 48px; box-shadow: 3px 3px 0 var(--ink); }
  .brand-mark img { width: 35px; }
  .alert-strip { margin-bottom: 14px; }
  .hero { min-height: 0; padding: 48px 24px 30px; grid-template-columns: 1fr; gap: 42px; border-radius: 24px; box-shadow: var(--shadow), 6px 6px 0 var(--yellow), 9px 9px 0 var(--ink); }
  h1 { font-size: clamp(2.55rem, 12vw, 4.3rem); }
  .route-card { max-width: 520px; transform: none; }
  .section-heading { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .info-grid article:last-child { border-bottom: 0; }
  .info-grid h3 { margin-top: 28px; }
  .alternate-entry { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; }
  .footer-compliance { justify-content: flex-start; text-align: left; }
}

@media (max-width: 480px) {
  .brand-copy small { display: none; }
  .migration-state { font-size: .8rem; }
  .alert-strip { padding: 9px 12px; gap: 6px 9px; border-radius: 11px; font-size: .78rem; }
  .alert-strip strong { width: calc(100% - 90px); font-size: .86rem; text-align: left; }
  .alert-strip > span:last-child { width: 100%; font-size: .74rem; }
  .hero { padding: 40px 18px 24px; border-radius: 20px; box-shadow: var(--shadow), 4px 4px 0 var(--yellow), 7px 7px 0 var(--ink); }
  h1 { font-size: clamp(2.55rem, 13.5vw, 4rem); }
  h1 mark { padding-right: 8px; padding-left: 8px; box-shadow: 4px 4px 0 #fff; }
  .lead { margin-top: 22px; line-height: 1.75; }
  .actions { align-items: stretch; flex-direction: column; }
  .primary-action { width: 100%; }
  .countdown-control { align-self: center; }
  .route-card { padding: 20px; box-shadow: 6px 6px 0 var(--yellow); }
  .route-brand { top: 18px; right: 18px; width: 46px; height: 46px; }
  .route-brand img { width: 33px; }
  .information { padding-top: 76px; }
  .info-grid article { padding: 24px 20px 27px; }
  .alternate-entry { padding: 24px 20px; }
  .entry-links { width: 100%; }
  .entry-links a { flex: 1; text-align: center; }
  .site-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .footer-compliance { flex-direction: column; align-items: flex-start; gap: 7px; }
  .footer-compliance > *:not(:last-child)::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .primary-action { transition: none; }
}
