:root {
  --yellow: #fccb03;
  --black: #0a0a0a;
  --text: #171717;
  --muted: #666;
  --border: #d8d8d8;
  --bg: #f3f3f3;
  --surface: #fff;
  --soft-yellow: #fff7c2;
  --green: #16794f;
  --blue: #1d4ed8;
  color-scheme: light;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
}

a {
  color: #111;
  font-weight: 600;
  text-decoration-color: rgba(10, 10, 10, 0.26);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.62);
  outline-offset: 3px;
}

button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 600;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

button:active { transform: translateY(1px); }
button:disabled { cursor: not-allowed; opacity: 0.45; }

.primary-button { background: var(--yellow); color: #111; }
.secondary-button { background: #e7e7e7; color: #111; }

body.menu-open { overflow: hidden; }

.page-header {
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  padding: calc(14px + env(safe-area-inset-top)) 16px 12px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.page-header-inner {
  align-items: flex-start;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 980px;
}

.page-heading-row {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  min-width: 0;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  height: 30px;
  text-decoration: none;
  width: 156px;
}

.brand-mark img {
  display: block;
  height: 100%;
  width: 100%;
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.header-store-link {
  align-items: center;
  background: #050505;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  min-height: 40px;
  padding: 8px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.site-menu {
  flex: 0 0 auto;
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  list-style: none;
  width: 42px;
}

.menu-toggle::-webkit-details-marker { display: none; }

.menu-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.menu-icon span {
  background: var(--black);
  border-radius: 999px;
  display: block;
  height: 2px;
}

.site-menu[open] .menu-toggle {
  background: var(--black);
}

.site-menu[open] .menu-icon span {
  background: var(--yellow);
}

.menu-backdrop {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 0;
  display: block;
  inset: 0;
  min-height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  width: auto;
  z-index: 40;
}

.site-drawer {
  background: var(--surface);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: -16px 0 42px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 360px;
  padding: calc(18px + env(safe-area-inset-top)) 18px calc(20px + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(84vw, 360px);
  z-index: 50;
}

.site-menu.menu-visible .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-menu.menu-visible .site-drawer { transform: translateX(0); }

.drawer-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-title {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.drawer-close {
  background: #ededed;
  height: 42px;
  padding: 0;
  position: relative;
  width: 42px;
}

.drawer-close::before,
.drawer-close::after {
  background: var(--black);
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  top: 20px;
  width: 18px;
}

.drawer-close::before { transform: rotate(45deg); }
.drawer-close::after { transform: rotate(-45deg); }

.drawer-nav {
  display: grid;
  gap: 6px;
}

.drawer-nav a {
  border-radius: 7px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  padding: 14px 13px;
  text-decoration: none;
}

.drawer-nav a[aria-current="page"] {
  background: #111;
  color: var(--yellow);
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.app-shell {
  margin: 0 auto;
  max-width: 980px;
  padding: 14px 12px 40px;
}

.page-intro {
  padding: 8px 4px 18px;
  text-align: center;
}

.page-intro h1 {
  color: var(--black);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.document-layout {
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow-wrap: anywhere;
  padding: 22px 18px 44px;
}

.document-eyebrow {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 6px;
}

.document-lead {
  color: #444;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin: 10px 0 0;
}

.document-layout h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.updated,
.lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 8px 0 0;
}

.document-layout h2 {
  border-top: 1px solid var(--border);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 30px 0 10px;
  padding-top: 24px;
}

.document-layout h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin: 22px 0 8px;
}

.document-layout p,
.document-layout li {
  font-size: 15px;
  line-height: 1.85;
}

.document-layout p { margin: 10px 0; }

.document-layout ul {
  margin: 10px 0 14px;
  padding-left: 1.25rem;
}

.document-layout li + li { margin-top: 6px; }

.landing-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 14px 52px;
}

.landing-hero {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 24px 0 34px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-title {
  color: var(--black);
  font-size: clamp(32px, 5.2vw, 56px);
  font-weight: 700;
  line-break: strict;
  line-height: 1.08;
  margin: 0;
  max-width: 720px;
  overflow-wrap: anywhere;
}

.hero-lead {
  color: #222;
  font-size: clamp(17px, 3.8vw, 21px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  margin: 0;
}

.hero-lead-group {
  display: grid;
  gap: 4px;
  max-width: 760px;
}

.hero-body {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
  max-width: 640px;
}

.notice-panel,
.policy-panel,
.article-note,
.app-download-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.notice-panel {
  border-color: rgba(252, 203, 3, 0.92);
  display: grid;
  gap: 8px;
  max-width: 660px;
  padding: 16px;
}

.notice-panel strong,
.article-note strong,
.app-download-panel strong {
  color: var(--black);
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.notice-panel p,
.article-note p,
.app-download-panel p {
  color: #444;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.hero-unofficial {
  color: rgba(10, 10, 10, 0.74);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  margin: -4px 0 0;
}

.hero-unofficial a {
  font-weight: 600;
}

.cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-button,
.outline-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-decoration: none;
}

.store-button {
  background: #050505;
  color: #fff;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.store-button span {
  color: #bdbdbd;
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.5;
  margin: 0;
}

.hero-meta span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #222;
  display: inline-flex;
  padding: 6px 10px;
}

.hero-media {
  align-items: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  margin: 0 auto;
  max-width: 560px;
  min-height: 380px;
  width: 100%;
}

.phone-frame {
  background: #111;
  border: 4px solid #111;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  display: block;
  overflow: hidden;
  transform: rotate(-3deg);
  width: min(31vw, 170px);
}

.phone-frame:nth-child(2) {
  transform: translateY(-24px);
  width: min(36vw, 214px);
  z-index: 2;
}

.phone-frame:nth-child(3) {
  transform: rotate(3deg);
}

.phone-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.landing-section {
  contain-intrinsic-size: 560px;
  content-visibility: auto;
  padding: 34px 0;
}

.steps-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.step-number {
  align-items: center;
  background: var(--yellow);
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.section-heading {
  color: var(--black);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
  margin: 0 0 12px;
}

.section-lead {
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 760px;
}

.feature-grid,
.article-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.feature-card,
.article-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.feature-card {
  display: grid;
  gap: 12px;
}

.feature-card img {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 7px;
  display: block;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.feature-card h3,
.article-card h3,
.policy-panel h3,
.contact-card h3,
.step-card h3,
.faq-item summary,
.closing-cta-copy h2 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.feature-card p,
.article-card p,
.policy-panel p,
.policy-list li,
.contact-card p,
.step-card p,
.faq-item p,
.closing-cta-copy p {
  color: #444;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.policy-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.policy-panel {
  padding: 18px;
}

.policy-panel-highlight {
  background: #fffdf0;
  border-color: rgba(252, 203, 3, 0.82);
}

.policy-panel h3 {
  margin-bottom: 10px;
}

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

.policy-list li {
  padding-left: 26px;
  position: relative;
}

.policy-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.article-card {
  color: inherit;
  display: grid;
  gap: 10px;
  min-height: 170px;
  text-decoration: none;
}

.article-card:hover,
.article-card:focus-visible {
  border-color: #111;
}

.article-number {
  align-items: center;
  background: var(--yellow);
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.article-arrow {
  align-self: end;
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 46px 17px 16px;
  position: relative;
}

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

.faq-item summary::after {
  color: var(--black);
  content: "+";
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  border-top: 1px solid #ededed;
  padding: 14px 16px 17px;
}

.contact-card {
  align-items: center;
  display: grid;
  gap: 14px;
}

.closing-cta {
  align-items: center;
  background: var(--yellow);
  border-radius: 8px;
  color: var(--black);
  display: grid;
  gap: 16px;
  padding: 20px;
}

.closing-cta-copy h2 {
  font-size: clamp(22px, 4vw, 30px);
}

.closing-cta-icon,
.floating-app-icon {
  border-radius: 18px;
  height: 74px;
  width: 74px;
}

.closing-cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.closing-cta .support-button {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.article-shell {
  margin: 0 auto;
  max-width: 860px;
  padding: 18px 14px 52px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  margin: 4px 0 16px;
}

.breadcrumb a {
  color: #444;
  font-weight: 600;
}

.article-layout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 18px 38px;
}

.next-reading {
  margin-top: 18px;
}

.next-reading h2 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

.next-reading-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.article-layout h1 {
  color: var(--black);
  font-size: clamp(30px, 8vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
}

.article-lead {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  margin: 14px 0 0;
}

.article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  margin: 12px 0 0;
}

.article-toc {
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  margin: 22px 0 28px;
  padding: 16px 18px;
}

.article-toc strong {
  color: var(--black);
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.article-toc ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.25rem;
}

.article-toc a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.article-note {
  background: #fffdf0;
  border-color: rgba(252, 203, 3, 0.82);
  margin: 22px 0;
  padding: 16px;
}

.article-layout h2 {
  border-top: 1px solid var(--border);
  color: var(--black);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
  margin: 30px 0 12px;
  padding-top: 24px;
}

.article-layout h3 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin: 22px 0 8px;
}

.article-layout p,
.article-layout li {
  color: #333;
  font-size: 16px;
  line-height: 1.9;
}

.article-layout p {
  margin: 10px 0;
}

.article-layout ul,
.article-layout ol {
  margin: 10px 0 16px;
  padding-left: 1.35rem;
}

.article-layout li + li {
  margin-top: 7px;
}

.check-list {
  list-style: none;
  padding-left: 0 !important;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.app-download-panel {
  align-items: center;
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 16px;
}

.download-app-icon {
  border-radius: 18px;
  height: 74px;
  width: 74px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
  margin-top: 24px;
  padding: 28px 16px calc(26px + env(safe-area-inset-bottom));
}

.site-footer-inner {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 980px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand-mark {
  display: block;
  height: 24px;
  width: 125px;
}

.footer-brand-mark img {
  display: block;
  height: 100%;
  width: 100%;
}

.footer-brand p,
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav h2 {
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 2px;
}

.footer-nav a {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.footer-disclaimer {
  border-top: 1px solid #ececec;
  margin: 24px auto 0;
  max-width: 980px;
  padding-top: 16px;
}

.floating-app-cta {
  align-items: center;
  background: #050505;
  border-radius: 999px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  left: 50%;
  max-width: 640px;
  opacity: 0;
  padding: 8px 8px 8px 10px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 22px);
  transition: opacity 180ms ease, transform 180ms ease;
  width: calc(100% - 24px);
  z-index: 25;
}

.floating-app-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.floating-app-icon {
  border-radius: 12px;
  height: 42px;
  width: 42px;
}

.floating-app-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.floating-app-text strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.floating-app-text span {
  color: #cfcfcf;
  font-size: 11px;
  line-height: 1.2;
}

.floating-app-button {
  background: var(--yellow);
  border-radius: 999px;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  min-height: 36px;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.floating-app-close {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  width: 36px;
}

@media (max-width: 430px) {
  .page-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .page-heading-row,
  .header-actions {
    gap: 6px;
  }
  .brand-mark {
    height: 29px;
    width: 150px;
  }
  .header-store-link {
    font-size: 12px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .menu-toggle {
    height: 40px;
    width: 40px;
  }
  .hero-title {
    max-width: 10.5em;
  }
}

@media (min-width: 720px) {
  .page-header { padding: calc(18px + env(safe-area-inset-top)) 20px 16px; }
  .page-header-inner { gap: 0; }
  .brand-mark {
    height: 34px;
    width: 177px;
  }
  .menu-toggle { height: 44px; width: 44px; }
  .app-shell { padding: 18px 20px 56px; }
  .page-intro { padding: 14px 4px 22px; }
  .page-intro h1 { font-size: 32px; }
  .landing-shell { padding: 22px 24px 70px; }
  .landing-hero {
    gap: 34px;
    grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
    padding: 58px 0 64px;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .article-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .policy-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }
  .contact-card {
    grid-template-columns: 1fr auto;
  }
  .closing-cta {
    grid-template-columns: auto 1fr auto;
    padding: 26px 28px;
  }
  .next-reading-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-shell {
    padding: 24px 20px 70px;
  }
  .article-layout {
    padding: 38px 48px 56px;
  }
  .app-download-panel {
    grid-template-columns: auto 1fr auto;
  }
  .document-layout {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px 42px 56px;
  }
  .document-layout p,
  .document-layout li {
    font-size: 16px;
  }
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer-inner {
    grid-template-columns: minmax(260px, 1fr) minmax(150px, auto) minmax(150px, auto);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .site-drawer { transition: none; }
  .floating-app-cta { transition: none; }
}
