:root {
  --font-sans: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ja: "Noto Sans JP", "Noto Sans", system-ui, sans-serif;
  --ink: #12232f;
  --ink-soft: #526670;
  --surface: #f7f8f4;
  --surface-strong: #ffffff;
  --line: #dfe6e2;
  --accent: #176c67;
  --accent-dark: #105752;
  --accent-soft: #dcefeb;
  --purple: #4a355f;
  --shadow: 0 24px 70px rgb(24 55 58 / 13%);
  --container: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

html:lang(ja) {
  font-family: var(--font-ja);
  line-height: 1.75;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgb(247 248 244 / 88%);
  border-bottom: 1px solid rgb(223 230 226 / 85%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--accent));
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: #173f4a;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 7%);
}

.brand-symbol {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-symbol circle {
  fill: #e79a7a;
  stroke: none;
}

.brand-name {
  font-size: 19px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 23px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: #ffffff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgb(23 108 103 / 18%);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.button-secondary {
  gap: 9px;
  color: var(--ink);
  background: transparent;
  border-color: #afbfba;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--accent-dark);
  background: var(--surface-strong);
  border-color: var(--accent);
}

.button:focus-visible,
.brand:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgb(23 108 103 / 32%);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 14px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  padding-block: 10px 22px;
}

.mobile-nav a:not(.button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.mobile-cta {
  margin-top: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 112px) clamp(70px, 9vw, 124px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgb(220 239 235 / 80%) 0, rgb(220 239 235 / 0%) 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
}

.hero-copy {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-description {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.hero-note {
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.product-visual {
  position: relative;
  width: min(100%, 1120px);
  margin: clamp(50px, 6vw, 76px) auto 0;
}

.product-screenshot {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
  border: 1px solid rgb(208 220 215 / 90%);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.highlights {
  padding-bottom: clamp(62px, 7vw, 96px);
  background: var(--surface);
}

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

.highlight-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 18px;
  color: var(--ink-soft);
  background: rgb(255 255 255 / 72%);
  border: 1px solid #e2e9e5;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.highlight-icon {
  min-width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.how-it-works {
  padding-block: clamp(78px, 9vw, 126px);
  background: #f1f5f2;
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: stretch;
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(44px, 5vw, 64px);
}

.how-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9e3de;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgb(24 55 58 / 9%);
}

.how-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 67% center;
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-width: 0;
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid #d9e3de;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgb(24 55 58 / 6%);
}

.step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.step-icon {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: #315d5b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.step-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.step-card strong {
  color: var(--ink);
}

.advanced-note {
  max-width: 900px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 28px auto 0;
  padding: 22px 26px;
  color: var(--ink-soft);
  background: #e4efeb;
  border: 1px solid #cadfd7;
  border-radius: 14px;
}

.advanced-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent-dark);
  background: #ffffff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.advanced-note strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.advanced-note p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.features {
  padding-block: clamp(78px, 9vw, 126px);
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  margin-top: clamp(42px, 5vw, 62px);
}

.feature-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface-strong);
  border: 1px solid #dce5e0;
  border-radius: 16px;
  box-shadow: 0 14px 38px rgb(24 55 58 / 6%);
}

.feature-card-topline {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.feature-label {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  fill: none;
  stroke: #315d5b;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-overview {
  padding-block: clamp(64px, 7vw, 92px);
  background: #eaf1ee;
}

.pricing {
  padding-block: clamp(78px, 9vw, 126px);
  background: #f1f5f2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  align-items: stretch;
  gap: 16px;
  margin-top: clamp(42px, 5vw, 62px);
}

.pricing-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 30px);
  background: var(--surface-strong);
  border: 1px solid #d8e2dd;
  border-radius: 16px;
  box-shadow: 0 14px 38px rgb(24 55 58 / 6%);
}

.pricing-card-header {
  min-height: 116px;
}

.pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.pricing-card-header p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.plan-price {
  min-height: 68px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.plan-price span {
  color: var(--ink);
  font-size: clamp(34px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price small {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.plan-price-from small:first-child {
  width: 100%;
  margin-bottom: 2px;
}

.plan-features {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan-features strong {
  color: var(--ink);
  font-weight: 600;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.privacy-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(40px, 7vw, 88px);
}

.privacy-summary h2 {
  max-width: 540px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.privacy-copy {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.faq {
  padding-block: clamp(78px, 9vw, 126px);
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(48px, 8vw, 104px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-intro > p:last-child {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line);
  overflow-anchor: none;
}

.faq-list details {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.faq-list details.is-animating {
  transition: height 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 9px;
  font-size: 22px;
  font-weight: 500;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details.is-collapsing summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -4px 52px 24px 4px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.js .faq-list details p {
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 260ms ease 80ms,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1) 40ms;
}

.js .faq-list details.is-expanded p {
  opacity: 1;
  transform: translateY(0);
}

.js .faq-list details.is-collapsing p {
  transition-delay: 0ms;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgb(23 108 103 / 32%);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-footer {
  padding-block: 62px 24px;
  color: rgb(255 255 255 / 72%);
  background: #102b34;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.55fr));
  gap: clamp(30px, 5vw, 64px);
}

.brand-on-dark {
  color: #ffffff;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-nav h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.footer-nav a {
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
}

.footer-nav a:focus-visible,
.brand-on-dark:focus-visible {
  outline-color: rgb(220 239 235 / 65%);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-copy {
    max-width: 760px;
  }

  .how-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .how-visual {
    aspect-ratio: 16 / 9;
  }

  .step-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    column-gap: 22px;
  }

  .step-topline {
    grid-row: 1 / span 2;
    align-items: flex-start;
    margin: 0;
  }

  .step-card h3 {
    align-self: end;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-block: 48px 70px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-description {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .product-screenshot {
    height: clamp(270px, 76vw, 320px);
    object-fit: cover;
    object-position: 68% center;
  }

  .highlight-list {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-item {
    min-height: 72px;
    justify-content: flex-start;
    text-align: left;
  }

  .how-it-works {
    padding-block: 68px 76px;
  }

  .features {
    padding-block: 68px 76px;
  }

  .pricing {
    padding-block: 68px 76px;
  }

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

  .privacy-overview {
    padding-block: 68px 76px;
  }

  .faq {
    padding-block: 68px 76px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .eyebrow,
  .section-heading > p:last-child {
    margin-left: 0;
  }

  .steps-list {
    margin-top: 0;
  }

  .how-visual {
    aspect-ratio: 4 / 3;
  }

  .step-card {
    display: block;
    padding: 24px;
  }

  .step-topline {
    align-items: center;
    margin-bottom: 22px;
  }

  .advanced-note {
    padding: 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-inner {
    gap: 10px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .highlight-list {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .highlight-item {
    min-height: 60px;
  }

  .advanced-note {
    display: block;
  }

  .advanced-icon {
    margin-bottom: 14px;
  }

  .feature-card-topline {
    margin-bottom: 22px;
  }

  .pricing-card-header,
  .plan-price {
    min-height: 0;
  }

  .faq-list summary {
    min-height: 70px;
    gap: 16px;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 4px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

}

@media (max-width: 350px) {
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .faq-list details[open] p {
    opacity: 1;
    transform: none;
  }
}
