:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-raised: #1a1a1a;
  --line: #2a2a2a;
  --line-strong: #3a3a3a;
  --text: #ececec;
  --text-muted: #9a9a9a;
  --text-dim: #6e6e6e;
  --accent: #e07a1a;
  --accent-soft: rgba(224, 122, 26, 0.12);
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  background: var(--bg);
}

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

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

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 800;
}

.nav {
  gap: clamp(16px, 2vw, 28px);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.header-cta {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.header-cta:hover,
.button-secondary:hover {
  border-color: var(--text-muted);
}

.button-primary:hover {
  background: #c96d16;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: 56px clamp(18px, 6vw, 84px) 72px;
  border-bottom: 1px solid var(--line);
}

.hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.hero-tagline {
  max-width: 540px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.85;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  flex: 1 1 120px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

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

.hero-stats dt {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-stack {
  display: grid;
  gap: 12px;
  width: min(320px, 100%);
}

.icon-tile {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.icon-tile-lg {
  width: 72px;
  height: 72px;
  justify-self: end;
  margin-right: 8px;
}

.icon-tile-sm {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.mo-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(224, 122, 26, 0.35));
}

.icon-tile-lg .mo-icon {
  width: 40px;
  height: 40px;
}

.icon-tile-sm .mo-icon {
  width: 26px;
  height: 26px;
}

.device-frame {
  width: min(320px, 100%);
  padding: 16px;
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.device-status {
  color: var(--accent);
  font-weight: 600;
}

.device-qr {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.device-qr-link {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
}

.device-qr-link:hover {
  box-shadow: 0 0 0 2px var(--accent);
}

.device-qr img {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.device-caption {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.device-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
}

.device-row button {
  padding: 4px 10px;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 72px clamp(18px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
}

.section-lead {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.pillar-grid,
.pricing-grid,
.architecture-grid,
.security-grid,
.policy-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.pillar-card {
  padding: 24px 22px;
  background: var(--surface);
  border: 0;
}

.pillar-card .icon-tile {
  margin-bottom: 14px;
}

.pillar-index {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 12px;
  font-weight: 600;
}

.pillar-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.spec-bar {
  padding-top: 0;
  padding-bottom: 0;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-item {
  padding: 20px 22px;
  background: var(--surface);
}

.spec-item dt {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.spec-item dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.pricing-notes {
  max-width: 720px;
  margin: 0 0 24px;
  padding: 14px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  background: var(--surface);
  border-left: 3px solid var(--accent);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
  background: var(--surface);
  border: 0;
}

.price-card.active {
  background: var(--surface-raised);
  box-shadow: inset 3px 0 0 var(--accent);
}

.plan-badge {
  width: fit-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
}

.plan-label {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 4px;
  font-size: 26px;
  font-weight: 700;
}

.price-note,
.price-intro {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.price-intro {
  margin: 0 0 12px;
}

.price-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding-left: 1em;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  text-indent: -1em;
}

.price-card li::before {
  content: "– ";
  color: var(--text-dim);
}

.price-feature-list {
  gap: 12px;
}

.price-feature-list > li {
  padding-left: 0;
  text-indent: 0;
}

.price-feature-list > li::before {
  content: none;
}

.price-feature-list > li > strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}

.price-feature-list ul {
  gap: 4px;
  padding-left: 0;
}

.price-feature-list ul li::before {
  content: "– ";
}

.price-cta {
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
}

.pricing-footnote {
  margin: 20px 0 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.7;
}

.about-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  padding: 28px;
}

.about-photo {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.about-initial {
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
}

.about-copy p {
  color: var(--text-muted);
  line-height: 1.85;
}

.about-note {
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--surface-raised);
  border-left: 3px solid var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.architecture-grid {
  grid-template-columns: repeat(2, 1fr);
}

.architecture-card,
.policy-card,
.security-card {
  padding: 24px;
  background: var(--surface);
  border: 0;
}

.security-card .icon-tile-sm {
  margin-bottom: 12px;
}

.architecture-card p,
.policy-card p,
.security-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.architecture-card strong,
.policy-card strong {
  color: var(--text);
}

.security-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.faq-item strong {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 400;
}

.faq-answer {
  display: none;
  padding: 0 4px 18px;
  border-bottom: 1px solid var(--line);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.policy-grid {
  grid-template-columns: repeat(2, 1fr);
}

.policy-link {
  margin-top: 16px;
}

.policy-all-link {
  margin: 24px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.policy-all-link a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 6vw, 84px) 56px;
  padding: 28px 32px;
}

.contact p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-actions {
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-experience .demo-points {
  margin: 0 0 24px;
  padding: 20px 24px;
  list-style: none;
}

.demo-experience .demo-points li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.demo-experience .demo-points li:last-child {
  margin-bottom: 0;
}

.demo-experience .demo-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.demo-qr-preview {
  display: grid;
  place-items: center;
  margin: 0 0 20px;
  text-align: center;
}

.demo-qr-link {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.demo-qr-link:hover {
  box-shadow: 0 0 0 2px var(--accent);
  transform: scale(1.02);
}

.demo-qr-hint {
  margin: 12px 0 0;
  color: var(--text-dim);
  font-size: 13px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-operator {
  margin: 12px 0 4px;
  color: var(--text-dim);
  font-size: 12px;
}

.footer-operator a {
  color: var(--text-muted);
}

.footer-operator a:hover {
  color: var(--text);
}

.site-footer {
  padding: 24px;
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 13px;
}

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

.release-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 4px 10px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
}

.release-schedule-label {
  color: var(--text-dim);
  font-weight: 600;
}

.release-schedule time {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.legal-body {
  background: var(--bg);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) clamp(18px, 4vw, 32px) 72px;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.legal-updated {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.legal-intro {
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.85;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.legal-toc a {
  padding: 8px 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-toc a:hover {
  border-color: var(--line-strong);
}

.legal-section {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 80px;
}

.legal-section > h2 {
  margin: 0 0 24px;
  padding-bottom: 12px;
  font-size: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-section section + section {
  margin-top: 24px;
}

.legal-section p,
.legal-section li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.legal-section a {
  color: var(--accent);
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 13px;
}

.legal-table th {
  background: var(--surface-raised);
  font-weight: 700;
}

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

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

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

  .hero-visual {
    order: -1;
  }

  .pillar-grid,
  .spec-list,
  .architecture-grid,
  .policy-grid,
  .security-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .header-cta {
    display: none;
  }

  .hero {
    padding: 40px 18px 56px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 56px 18px;
  }
}

body.mo-loading {
  overflow: hidden;
}

.mo-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(224, 122, 26, 0.09), transparent 70%),
    var(--bg);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mo-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mo-loader-brand {
  position: absolute;
  top: clamp(20px, 4vh, 36px);
  left: 50%;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
}

.mo-loader-mark {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
}

.mo-loader-inner {
  position: relative;
  width: min(98vw, 720px);
  height: min(88vh, 780px);
  --orbit: max(210px, min(44vw, 300px));
}

.mo-loader-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit) * 2 + 112px);
  height: calc(var(--orbit) * 2 + 112px);
  border: 1px dashed rgba(224, 122, 26, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mo-loader-orbit {
  position: absolute;
  inset: 0;
}

.mo-loader-lightning {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: calc(var(--orbit) * 2 + 96px);
  height: calc(var(--orbit) * 2 + 96px);
  overflow: visible;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}

.mo-loader-combo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: calc(var(--orbit) * 2 + 96px);
  height: calc(var(--orbit) * 2 + 96px);
  overflow: visible;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}

.mo-loader-combo-line {
  stroke: #ffc857;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(255, 200, 87, 0.65));
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
}

.mo-loader-bolt {
  fill: none;
  stroke: #5ecbff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(68, 199, 255, 0.85));
}

.mo-loader-phone-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
}

.mo-loader-phone {
  width: 200px;
  height: 400px;
  padding: 12px;
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 32px 64px rgba(0, 0, 0, 0.55);
}

.mo-loader-notch {
  width: 56px;
  height: 4px;
  margin: 0 auto 10px;
  background: var(--line);
  border-radius: 999px;
}

.mo-loader-screen {
  display: grid;
  place-items: center;
  height: calc(100% - 20px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.mo-loader-connect {
  color: #3dd68c;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-shadow: 0 0 24px rgba(61, 214, 140, 0.35);
  opacity: 0;
  transform: scale(0.85);
}

.mo-loader-order {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  font-size: 48px;
  line-height: 1;
  opacity: 1;
  transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
}

.mo-loader-order::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.mo-loader-order[data-h="1"] {
  --ox: calc(var(--orbit) * 0.5);
  --oy: calc(var(--orbit) * -0.866);
}

.mo-loader-order[data-h="3"] {
  --ox: var(--orbit);
  --oy: 0px;
}

.mo-loader-order[data-h="5"] {
  --ox: calc(var(--orbit) * 0.5);
  --oy: calc(var(--orbit) * 0.866);
}

.mo-loader-order[data-h="7"] {
  --ox: calc(var(--orbit) * -0.5);
  --oy: calc(var(--orbit) * 0.866);
}

.mo-loader-order[data-h="9"] {
  --ox: calc(var(--orbit) * -1);
  --oy: 0px;
}

.mo-loader-order[data-h="11"] {
  --ox: calc(var(--orbit) * -0.5);
  --oy: calc(var(--orbit) * -0.866);
}

@keyframes loader-order-absorb {
  0% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
    filter: drop-shadow(0 0 0 rgba(224, 122, 26, 0));
  }

  20% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12);
    filter: drop-shadow(0 0 12px rgba(224, 122, 26, 0.45));
  }
}

@keyframes loader-order-flash {
  0%,
  25% {
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader-connect-ring {
  from {
    border-color: rgba(61, 214, 140, 0);
    transform: scale(0.96);
  }

  to {
    border-color: rgba(61, 214, 140, 0.45);
    transform: scale(1);
  }
}

@keyframes loader-phone-shake {
  0%,
  5%,
  17%,
  29%,
  41%,
  53%,
  65% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  7%,
  19%,
  31%,
  43%,
  55%,
  67% {
    transform: translate(calc(-50% - 6px), -50%) rotate(-8deg);
  }

  9%,
  21%,
  33%,
  45%,
  57%,
  69% {
    transform: translate(calc(-50% + 6px), -50%) rotate(8deg);
  }

  71%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes loader-connect-show {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Pattern 1: 時計配置 → 1個ずつ吸い込み ── */
.mo-loader--pattern-1 .mo-loader-phone-wrap {
  animation: loader-phone-shake 3s ease-in-out forwards;
}

.mo-loader--pattern-1 .mo-loader-phone-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(47, 192, 110, 0);
  border-radius: 40px;
  animation: loader-connect-ring 0.5s ease forwards;
  animation-delay: 2.67s;
  pointer-events: none;
}

.mo-loader--pattern-1 .mo-loader-connect {
  animation: loader-connect-show 0.35s ease forwards;
  animation-delay: 2.67s;
}

.mo-loader--pattern-1 .mo-loader-order {
  animation: loader-order-absorb 0.78s cubic-bezier(0.45, 0, 0.55, 1) forwards;
  animation-delay: calc(var(--seq) * 0.39s);
}

.mo-loader--pattern-1 .mo-loader-order::after {
  border-color: rgba(224, 122, 26, 0.35);
  animation: loader-order-flash 0.78s ease forwards;
  animation-delay: calc(var(--seq) * 0.39s);
}

/* ── Pattern 3: 1 → 7 → 3 → 9 → 5 → 11時 の順に吸い込み ── */
.mo-loader--pattern-3 .mo-loader-phone-wrap {
  animation: loader-phone-shake 3s ease-in-out forwards;
}

.mo-loader--pattern-3 .mo-loader-phone-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(47, 192, 110, 0);
  border-radius: 40px;
  animation: loader-connect-ring 0.5s ease forwards;
  animation-delay: 2.67s;
  pointer-events: none;
}

.mo-loader--pattern-3 .mo-loader-connect {
  animation: loader-connect-show 0.35s ease forwards;
  animation-delay: 2.67s;
}

.mo-loader--pattern-3 .mo-loader-order {
  animation: loader-order-absorb 0.78s cubic-bezier(0.45, 0, 0.55, 1) forwards;
  animation-delay: calc(var(--absorb-order) * 0.39s);
}

.mo-loader--pattern-3 .mo-loader-order[data-h="1"] {
  --absorb-order: 0;
}

.mo-loader--pattern-3 .mo-loader-order[data-h="7"] {
  --absorb-order: 1;
}

.mo-loader--pattern-3 .mo-loader-order[data-h="3"] {
  --absorb-order: 2;
}

.mo-loader--pattern-3 .mo-loader-order[data-h="9"] {
  --absorb-order: 3;
}

.mo-loader--pattern-3 .mo-loader-order[data-h="5"] {
  --absorb-order: 4;
}

.mo-loader--pattern-3 .mo-loader-order[data-h="11"] {
  --absorb-order: 5;
}

.mo-loader--pattern-3 .mo-loader-order::after {
  border-color: rgba(224, 122, 26, 0.35);
  animation: loader-order-flash 0.78s ease forwards;
  animation-delay: calc(var(--absorb-order) * 0.39s);
}

/* ── Pattern 4: 対極コンボ — 向かい合う2品がラインで繋がり、ペアで吸い込み ── */
.mo-loader--pattern-4 {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 200, 87, 0.1), transparent 70%),
    var(--bg);
}

.mo-loader--pattern-4 .mo-loader-orbit-ring {
  border-color: rgba(255, 200, 87, 0.2);
  animation: loader-ring-pulse 3s ease-in-out forwards;
}

.mo-loader--pattern-4 .mo-loader-combo {
  opacity: 1;
}

.mo-loader--pattern-4 .mo-loader-combo-line[data-pair="a"] {
  animation: loader-combo-line 0.32s ease-out forwards;
  animation-delay: 0.15s;
}

.mo-loader--pattern-4 .mo-loader-combo-line[data-pair="b"] {
  animation: loader-combo-line 0.32s ease-out forwards;
  animation-delay: 0.75s;
}

.mo-loader--pattern-4 .mo-loader-combo-line[data-pair="c"] {
  animation: loader-combo-line 0.32s ease-out forwards;
  animation-delay: 1.35s;
}

.mo-loader--pattern-4 .mo-loader-order[data-h="1"],
.mo-loader--pattern-4 .mo-loader-order[data-h="7"] {
  animation: loader-order-combo 0.5s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  animation-delay: 0.39s;
}

.mo-loader--pattern-4 .mo-loader-order[data-h="3"],
.mo-loader--pattern-4 .mo-loader-order[data-h="9"] {
  animation: loader-order-combo 0.5s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  animation-delay: 0.99s;
}

.mo-loader--pattern-4 .mo-loader-order[data-h="5"],
.mo-loader--pattern-4 .mo-loader-order[data-h="11"] {
  animation: loader-order-combo 0.5s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  animation-delay: 1.59s;
}

.mo-loader--pattern-4 .mo-loader-order::after {
  border-color: rgba(255, 200, 87, 0.7);
  box-shadow: 0 0 16px rgba(255, 200, 87, 0.4);
  animation: loader-order-combo-flash 0.5s ease forwards;
}

.mo-loader--pattern-4 .mo-loader-order[data-h="1"]::after,
.mo-loader--pattern-4 .mo-loader-order[data-h="7"]::after {
  animation-delay: 0.39s;
}

.mo-loader--pattern-4 .mo-loader-order[data-h="3"]::after,
.mo-loader--pattern-4 .mo-loader-order[data-h="9"]::after {
  animation-delay: 0.99s;
}

.mo-loader--pattern-4 .mo-loader-order[data-h="5"]::after,
.mo-loader--pattern-4 .mo-loader-order[data-h="11"]::after {
  animation-delay: 1.59s;
}

.mo-loader--pattern-4 .mo-loader-phone-wrap {
  animation: loader-phone-shake-combo 3s ease-in-out forwards;
}

.mo-loader--pattern-4 .mo-loader-phone-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(47, 192, 110, 0);
  border-radius: 40px;
  animation: loader-connect-ring 0.5s ease forwards;
  animation-delay: 2.67s;
  pointer-events: none;
}

.mo-loader--pattern-4 .mo-loader-connect {
  animation: loader-connect-show 0.35s ease forwards;
  animation-delay: 2.67s;
}

.mo-loader--pattern-4 .mo-loader-phone {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 36px rgba(255, 200, 87, 0.12),
    0 32px 64px rgba(0, 0, 0, 0.55);
}

@keyframes loader-combo-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes loader-order-combo {
  0%,
  22% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 200, 87, 0));
  }

  32% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1.14);
    filter: drop-shadow(0 0 18px rgba(255, 200, 87, 0.75));
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
    filter: drop-shadow(0 0 10px rgba(255, 200, 87, 0.35));
  }
}

@keyframes loader-order-combo-flash {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader-ring-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes loader-phone-shake-combo {
  0%,
  11%,
  31%,
  51%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  13%,
  33%,
  53% {
    transform: translate(calc(-50% - 7px), -50%) rotate(-9deg);
  }

  15%,
  35%,
  55% {
    transform: translate(calc(-50% + 7px), -50%) rotate(9deg);
  }

  57%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* ── Pattern 5: ポップコーン — 順番に弾けて、一斉に吸い込み ── */
.mo-loader--pattern-5 {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 110, 90, 0.1), transparent 70%),
    var(--bg);
}

.mo-loader--pattern-5 .mo-loader-orbit-ring {
  border-color: rgba(255, 130, 110, 0.18);
  border-style: dotted;
}

.mo-loader--pattern-5 .mo-loader-order {
  animation:
    loader-popcorn-pop 0.34s cubic-bezier(0.34, 1.45, 0.64, 1) forwards,
    loader-popcorn-gather 0.48s cubic-bezier(0.6, 0, 1, 0.35) 1.53s forwards;
  animation-delay: calc(var(--seq) * 0.195s), 1.53s;
}

.mo-loader--pattern-5 .mo-loader-order::after {
  border-color: rgba(255, 130, 110, 0.65);
  animation: loader-popcorn-spark 0.34s ease forwards;
  animation-delay: calc(var(--seq) * 0.195s);
}

.mo-loader--pattern-5 .mo-loader-phone-wrap::before {
  content: "";
  position: absolute;
  inset: -48px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 100, 80, 0.35), transparent 68%);
  opacity: 0;
  transform: scale(0.6);
  animation: loader-popcorn-burst 0.45s ease-out forwards;
  animation-delay: 1.53s;
  pointer-events: none;
}

.mo-loader--pattern-5 .mo-loader-phone-wrap {
  animation: loader-phone-shake-popcorn 3s ease-in-out forwards;
}

.mo-loader--pattern-5 .mo-loader-phone-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(47, 192, 110, 0);
  border-radius: 40px;
  animation: loader-connect-ring 0.5s ease forwards;
  animation-delay: 2.67s;
  pointer-events: none;
}

.mo-loader--pattern-5 .mo-loader-connect {
  animation: loader-connect-show 0.35s ease forwards;
  animation-delay: 2.67s;
}

.mo-loader--pattern-5 .mo-loader-phone {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 32px rgba(255, 110, 90, 0.14),
    0 32px 64px rgba(0, 0, 0, 0.55);
}

@keyframes loader-popcorn-pop {
  0% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 130, 110, 0));
  }

  45% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1.22);
    filter: drop-shadow(0 0 20px rgba(255, 130, 110, 0.85));
  }

  100% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
    filter: drop-shadow(0 0 6px rgba(255, 130, 110, 0.25));
  }
}

@keyframes loader-popcorn-spark {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  40% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes loader-popcorn-gather {
  0% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.08);
  }
}

@keyframes loader-popcorn-burst {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  35% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes loader-phone-shake-popcorn {
  0%,
  48%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.04);
  }

  52% {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.04);
  }

  54% {
    transform: translate(-50%, -50%) rotate(-8deg) scale(1.02);
  }

  56% {
    transform: translate(-50%, -50%) rotate(8deg) scale(1.02);
  }

  58%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}

/* ── Pattern 6: スライドパズル — 12品をスライド全消し → コネクト ── */
.mo-loader-puzzle {
  display: none;
}

.mo-loader--pattern-6 {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(120, 200, 160, 0.1), transparent 70%),
    var(--bg);
}

.mo-loader--pattern-6 .mo-loader-orbit,
.mo-loader--pattern-6 .mo-loader-orbit-ring,
.mo-loader--pattern-6 .mo-loader-lightning,
.mo-loader--pattern-6 .mo-loader-combo {
  display: none;
}

.mo-loader--pattern-6 .mo-loader-screen {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}

.mo-loader--pattern-6 .mo-loader-puzzle {
  position: absolute;
  inset: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
}

.mo-loader-tile {
  display: grid;
  place-items: center;
  font-size: 17px;
  line-height: 1;
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  grid-column: calc(var(--col) + 1);
  grid-row: calc(var(--row) + 1);
  --dx: calc((1 - var(--col)) * 108%);
  --dy: calc((3 - var(--row)) * 108%);
}

.mo-loader--pattern-6 .mo-loader-tile {
  animation: loader-puzzle-slide 0.34s ease-in forwards;
  animation-delay: calc(0.28s + var(--n) * 0.19s);
}

.mo-loader--pattern-6 .mo-loader-connect {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  animation: loader-connect-show 0.35s ease forwards;
  animation-delay: 2.58s;
}

.mo-loader--pattern-6 .mo-loader-phone-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(47, 192, 110, 0);
  border-radius: 40px;
  animation: loader-connect-ring 0.5s ease forwards;
  animation-delay: 2.67s;
  pointer-events: none;
}

.mo-loader--pattern-6 .mo-loader-phone {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 28px rgba(120, 200, 160, 0.12),
    0 32px 64px rgba(0, 0, 0, 0.55);
}

@keyframes loader-puzzle-slide {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  35% {
    opacity: 1;
    transform: translate(calc((2 - var(--col)) * 108%), 0) scale(0.96);
  }

  70% {
    opacity: 1;
    transform: translate(calc((2 - var(--col)) * 108%), calc((3 - var(--row)) * 108%)) scale(0.9);
  }

  100% {
    opacity: 0;
    transform: translate(calc((2 - var(--col)) * 108%), calc((3 - var(--row)) * 108%)) scale(0);
  }
}

/* ── Pattern 2: 稲妻が一斉に捕まえて引き寄せ ── */
.mo-loader--pattern-2 {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(68, 199, 255, 0.12), transparent 70%),
    var(--bg);
}

.mo-loader--pattern-2 .mo-loader-orbit-ring {
  border-color: rgba(68, 199, 255, 0.18);
}

.mo-loader--pattern-2 .mo-loader-lightning {
  opacity: 1;
}

.mo-loader--pattern-2 .mo-loader-bolt {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation:
    loader-bolt-strike 0.38s ease-out forwards,
    loader-bolt-flicker 0.12s ease-in-out 1.08s 5;
  animation-delay: 0.48s, 1.08s;
}

.mo-loader--pattern-2 .mo-loader-bolt[data-h="3"],
.mo-loader--pattern-2 .mo-loader-bolt[data-h="9"] {
  animation-delay: 0.57s, 1.08s;
}

.mo-loader--pattern-2 .mo-loader-bolt[data-h="5"],
.mo-loader--pattern-2 .mo-loader-bolt[data-h="11"] {
  animation-delay: 0.57s, 1.08s;
}

.mo-loader--pattern-2 .mo-loader-order {
  animation: loader-order-lightning-pull 0.58s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  animation-delay: 1.08s;
}

.mo-loader--pattern-2 .mo-loader-order::after {
  border-color: rgba(68, 199, 255, 0.75);
  box-shadow: 0 0 18px rgba(68, 199, 255, 0.45);
  animation: loader-order-capture 0.45s ease forwards;
  animation-delay: 1.08s;
}

.mo-loader--pattern-2 .mo-loader-phone-wrap {
  animation: loader-phone-shake-lightning 3s ease-in-out forwards;
}

.mo-loader--pattern-2 .mo-loader-phone-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(47, 192, 110, 0);
  border-radius: 40px;
  animation: loader-connect-ring 0.5s ease forwards;
  animation-delay: 2.67s;
  pointer-events: none;
}

.mo-loader--pattern-2 .mo-loader-connect {
  animation: loader-connect-show 0.35s ease forwards;
  animation-delay: 2.67s;
}

.mo-loader--pattern-2 .mo-loader-phone {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 40px rgba(68, 199, 255, 0.15),
    0 32px 64px rgba(0, 0, 0, 0.55);
}

@keyframes loader-bolt-strike {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes loader-bolt-flicker {
  0%,
  100% {
    opacity: 1;
    stroke: #5ecbff;
  }

  50% {
    opacity: 0.45;
    stroke: #b8ecff;
  }
}

@keyframes loader-order-lightning-pull {
  0% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
    filter: drop-shadow(0 0 14px rgba(68, 199, 255, 0.55));
  }

  18% {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1.06);
    filter: drop-shadow(0 0 22px rgba(68, 199, 255, 0.75));
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
    filter: drop-shadow(0 0 8px rgba(68, 199, 255, 0.3));
  }
}

@keyframes loader-order-capture {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader-phone-shake-lightning {
  0%,
  34%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  36% {
    transform: translate(calc(-50% - 10px), -50%) rotate(-11deg);
  }

  38% {
    transform: translate(calc(-50% + 10px), -50%) rotate(11deg);
  }

  40% {
    transform: translate(calc(-50% - 7px), -50%) rotate(-7deg);
  }

  42% {
    transform: translate(calc(-50% + 7px), -50%) rotate(7deg);
  }

  44% {
    transform: translate(calc(-50% - 4px), -50%) rotate(-4deg);
  }

  46%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mo-loader--pattern-1 .mo-loader-order,
  .mo-loader--pattern-1 .mo-loader-phone-wrap,
  .mo-loader--pattern-1 .mo-loader-connect,
  .mo-loader--pattern-1 .mo-loader-phone-wrap::after,
  .mo-loader--pattern-1 .mo-loader-order::after,
  .mo-loader--pattern-3 .mo-loader-order,
  .mo-loader--pattern-3 .mo-loader-phone-wrap,
  .mo-loader--pattern-3 .mo-loader-connect,
  .mo-loader--pattern-3 .mo-loader-phone-wrap::after,
  .mo-loader--pattern-3 .mo-loader-order::after,
  .mo-loader--pattern-4 .mo-loader-order,
  .mo-loader--pattern-4 .mo-loader-phone-wrap,
  .mo-loader--pattern-4 .mo-loader-connect,
  .mo-loader--pattern-4 .mo-loader-phone-wrap::after,
  .mo-loader--pattern-4 .mo-loader-order::after,
  .mo-loader--pattern-4 .mo-loader-combo-line,
  .mo-loader--pattern-4 .mo-loader-orbit-ring,
  .mo-loader--pattern-5 .mo-loader-order,
  .mo-loader--pattern-5 .mo-loader-phone-wrap,
  .mo-loader--pattern-5 .mo-loader-phone-wrap::before,
  .mo-loader--pattern-5 .mo-loader-phone-wrap::after,
  .mo-loader--pattern-5 .mo-loader-connect,
  .mo-loader--pattern-5 .mo-loader-order::after,
  .mo-loader--pattern-6 .mo-loader-tile,
  .mo-loader--pattern-6 .mo-loader-connect,
  .mo-loader--pattern-6 .mo-loader-phone-wrap::after,
  .mo-loader--pattern-2 .mo-loader-order,
  .mo-loader--pattern-2 .mo-loader-phone-wrap,
  .mo-loader--pattern-2 .mo-loader-connect,
  .mo-loader--pattern-2 .mo-loader-phone-wrap::after,
  .mo-loader--pattern-2 .mo-loader-order::after,
  .mo-loader--pattern-2 .mo-loader-bolt {
    animation: none;
  }

  .mo-loader--pattern-2 .mo-loader-lightning {
    opacity: 0;
  }

  .mo-loader--pattern-4 .mo-loader-combo {
    opacity: 0;
  }

  .mo-loader-order {
    opacity: 1;
    transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) scale(1);
  }

  .mo-loader-connect {
    opacity: 1;
    transform: none;
  }
}
