@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&family=Shippori+Mincho:wght@600;700;800&display=swap");

:root {
  --green-950: #0d1c16;
  --green-900: #14281f;
  --green-800: #1b3529;
  --green-700: #294b3b;
  --paper: #f4efe5;
  --paper-light: #fbf8f2;
  --paper-dark: #e8dfd0;
  --gold: #c6a35e;
  --gold-light: #ead59d;
  --orange: #e9571f;
  --orange-dark: #c94112;
  --sumi: #22211e;
  --muted: #6c685f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--sumi);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgb(250 247 241 / 90%);
  border-bottom: 1px solid rgb(198 163 94 / 26%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  text-decoration: none;
}

.brand-crest {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-note {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 25px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgb(201 65 18 / 20%);
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.header-cta--desktop {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgb(198 163 94 / 12%), transparent 28%),
    linear-gradient(126deg, var(--green-950), var(--green-800));
}

.hero-pattern,
.gifts-pattern,
.final-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, rgb(234 213 157 / 8%) 46%, rgb(234 213 157 / 8%) 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgb(234 213 157 / 6%) 46%, rgb(234 213 157 / 6%) 54%, transparent 54%);
  background-size: 74px 74px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: 72px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 58px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow span {
  padding: 6px 11px;
  color: var(--green-950);
  font-size: 11px;
  letter-spacing: 0.16em;
  background: var(--gold-light);
}

.hero h1 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(52px, 5.25vw, 78px);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.hero h1 span {
  display: block;
}

.h1-quote {
  color: var(--gold-light);
  font-size: 0.62em;
  letter-spacing: 0.06em;
}

.hero-lead {
  margin: 28px 0 32px;
  color: rgb(255 255 255 / 78%);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.07em;
}

.hero-offer {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 13px;
  padding: 12px 18px;
  color: var(--green-950);
  background: var(--paper);
  box-shadow: 7px 7px 0 rgb(198 163 94 / 24%);
}

.hero-offer .offer-label {
  margin-right: 15px;
  padding-right: 15px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--gold);
}

.hero-offer strong {
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
}

.hero-offer > span:last-child {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 700;
}

.hero-offer--mobile {
  display: none;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: min(100%, 490px);
  min-height: 76px;
  padding: 12px 22px;
  color: white;
  background: linear-gradient(180deg, #f4692e, var(--orange));
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgb(8 17 13 / 28%), inset 0 1px 0 rgb(255 255 255 / 28%);
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta-button:hover {
  filter: brightness(0.97);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgb(8 17 13 / 36%), inset 0 1px 0 rgb(255 255 255 / 28%);
}

.cta-button span:not(.line-icon) {
  display: grid;
  gap: 1px;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cta-button small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.cta-button b {
  margin-left: auto;
  font-size: 32px;
  font-weight: 400;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: #06c755;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: white;
  border-radius: 50%;
}

.responsive-line-action {
  display: grid;
  justify-items: center;
  width: min(100%, 520px);
  scroll-margin-top: 120px;
}

.desktop-line-qr {
  display: none;
  align-items: center;
  gap: 22px;
  width: min(100%, 455px);
  padding: 16px 24px 16px 16px;
  color: var(--green-900);
  text-align: left;
  background: var(--paper-light);
  border: 1px solid var(--gold);
  box-shadow: 0 16px 38px rgb(8 17 13 / 24%);
}

.desktop-line-qr img {
  display: block;
  width: 142px;
  height: 142px;
  padding: 7px;
  background: white;
  border: 1px solid var(--paper-dark);
}

.desktop-line-qr div {
  display: grid;
  gap: 7px;
}

.desktop-line-qr small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.desktop-line-qr strong {
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  line-height: 1.55;
}

.desktop-line-qr span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

.cta-note {
  width: min(100%, 490px);
  margin: 10px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.book-caption {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.book-stage {
  position: relative;
  width: 330px;
  height: 445px;
  perspective: 1200px;
}

.book-shadow {
  position: absolute;
  right: 10px;
  bottom: -12px;
  width: 75%;
  height: 55px;
  background: rgb(0 0 0 / 38%);
  filter: blur(22px);
  transform: rotate(-7deg);
}

.book {
  position: relative;
  width: 278px;
  height: 398px;
  margin: 0 auto;
  transform: rotateY(-11deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.book-stage:hover .book {
  transform: rotateY(-3deg) rotateZ(-1deg) translateY(-8px);
}

.book-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 32px 28px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 4%), transparent 18%),
    radial-gradient(circle at 75% 12%, rgb(234 213 157 / 16%), transparent 32%),
    #173328;
  border: 1px solid rgb(234 213 157 / 46%);
  box-shadow: 18px 23px 32px rgb(0 0 0 / 35%);
}

.book-face::before,
.book-face::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgb(234 213 157 / 16%);
  transform: rotate(45deg);
}

.book-face::before {
  top: -110px;
  right: -50px;
}

.book-face::after {
  right: -90px;
  bottom: -40px;
}

.book-spine {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -13px;
  width: 14px;
  background: linear-gradient(90deg, #09130f, #23483a);
  transform: rotateY(-62deg);
  transform-origin: right;
}

.book-kicker {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.book-rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  margin: 15px 0 26px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.book-copy {
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho", serif;
}

.book-copy span {
  display: block;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.book-copy strong {
  display: block;
  color: var(--gold-light);
  font-size: 61px;
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.book-face p {
  position: absolute;
  z-index: 1;
  bottom: 57px;
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-family: "Shippori Mincho", serif;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.book-author {
  position: absolute;
  z-index: 1;
  right: 27px;
  bottom: 23px;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.book-seal {
  position: absolute;
  z-index: 1;
  right: 28px;
  top: 190px;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: var(--paper);
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 800;
  background: #a73724;
  border: 1px solid rgb(255 255 255 / 42%);
}

.gift-stamp {
  position: absolute;
  right: -5px;
  bottom: 55px;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  color: var(--green-950);
  text-align: center;
  background: var(--gold-light);
  border: 3px double var(--green-800);
  border-radius: 50%;
  transform: rotate(7deg);
  box-shadow: 0 8px 24px rgb(0 0 0 / 28%);
}

.gift-stamp span {
  font-size: 10px;
  font-weight: 700;
}

.gift-stamp strong {
  margin-top: -7px;
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  line-height: 1.15;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 55px;
  background: var(--paper);
  clip-path: polygon(0 68%, 32% 13%, 64% 78%, 100% 24%, 100% 100%, 0 100%);
}

.section-pad {
  padding: 112px 0;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-shell.narrow {
  width: min(850px, calc(100% - 48px));
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading > p::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

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

.section-heading--center > p {
  justify-content: center;
}

.problem {
  background:
    linear-gradient(rgb(244 239 229 / 92%), rgb(244 239 229 / 92%)),
    repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgb(41 75 59 / 6%) 6px);
}

.worry-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--paper-light);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.worry-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--paper-dark);
}

.worry-list li:last-child {
  border-bottom: 0;
}

.worry-list span {
  display: grid;
  place-items: center;
  align-self: stretch;
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  border-right: 1px solid var(--paper-dark);
}

.worry-list p {
  position: relative;
  margin: 0;
  padding: 18px 52px 18px 28px;
  color: #3f3d38;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.worry-list p::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--orange);
  font-size: 18px;
  transform: translateY(-50%);
}

.bridge-copy {
  margin-top: 58px;
  text-align: center;
}

.brush-line {
  display: block;
  width: 1px;
  height: 36px;
  margin: 0 auto 26px;
  background: var(--gold);
}

.bridge-copy p {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  line-height: 2;
}

.bridge-copy strong {
  color: var(--green-800);
  background: linear-gradient(transparent 68%, rgb(198 163 94 / 32%) 68%);
}

.benefits {
  background: var(--paper-light);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--paper-dark);
  border-left: 1px solid var(--paper-dark);
}

.benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  min-height: 200px;
  padding: 36px;
  background: #fff;
  border-right: 1px solid var(--paper-dark);
  border-bottom: 1px solid var(--paper-dark);
}

.benefit-card--featured {
  grid-column: span 2;
  grid-template-columns: 84px 1fr;
  min-height: 230px;
  padding: 50px;
  color: var(--sumi);
  background: #fff;
}

.benefit-number {
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  line-height: 1;
}

.benefit-card h3 {
  margin: 0 0 13px;
  color: var(--green-800);
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  letter-spacing: 0.04em;
}

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

.benefit-card--featured h3 {
  color: var(--green-800);
  font-size: 23px;
}

.benefit-card--featured p {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}

.toc-section {
  background:
    linear-gradient(rgb(244 239 229 / 96%), rgb(244 239 229 / 96%)),
    repeating-linear-gradient(90deg, transparent 0, transparent 7px, rgb(41 75 59 / 6%) 8px);
}

.toc-box {
  position: relative;
  padding: 76px 34px 34px;
  background: var(--paper-light);
  border: 1px solid var(--gold);
  box-shadow:
    inset 0 0 0 7px var(--paper-light),
    inset 0 0 0 8px rgb(198 163 94 / 35%),
    12px 14px 0 rgb(198 163 94 / 12%);
}

.toc-seal {
  position: absolute;
  top: -44px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: var(--gold-light);
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--green-800);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgb(8 17 13 / 24%);
  transform: translateX(-50%);
}

.toc-list {
  display: grid;
  gap: 14px;
}

.toc-chapter {
  overflow: hidden;
  background: white;
  border: 1px solid var(--paper-dark);
}

.toc-chapter h3 {
  margin: 0;
  padding: 18px 22px;
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  line-height: 1.55;
  white-space: nowrap;
  background: linear-gradient(90deg, rgb(41 75 59 / 9%), transparent);
  border-bottom: 1px solid var(--paper-dark);
}

.toc-chapter ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 14px 28px 22px 46px;
  list-style: none;
}

.toc-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 7px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.toc-item::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -18px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.toc-item > span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.toc-item > strong {
  font-weight: 600;
}

.toc-item--plain {
  grid-template-columns: minmax(0, 1fr);
  white-space: nowrap;
}

.toc-item--あらすじ {
  margin-top: 9px;
  padding-top: 15px;
  border-top: 1px dashed var(--paper-dark);
}

.toc-item--あらすじ::before {
  top: 25px;
}

.toc-item--あらすじ > span {
  color: var(--orange-dark);
}

.toc-item--解釈 > span {
  color: #7b5a13;
}

.toc-item--伝え方 > span {
  color: var(--green-700);
}

.toc-chapter--standalone h3 {
  color: white;
  background: var(--green-800);
  border-bottom: 0;
}

.gifts {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
}

.gifts-pattern {
  opacity: 0.24;
}

.section-heading--light h2 {
  color: white;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gift-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgb(234 213 157 / 48%);
}

.gift-mark {
  display: grid;
  place-items: center;
  width: 100%;
  height: 150px;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-family: "Shippori Mincho", serif;
  font-size: 67px;
  background:
    linear-gradient(135deg, transparent 49%, rgb(234 213 157 / 12%) 50%, transparent 51%),
    var(--green-800);
  border: 1px solid rgb(234 213 157 / 34%);
}

.gift-meta {
  display: flex;
  align-items: center;
  gap: 9px;
}

.gift-meta span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gift-meta em {
  padding: 3px 7px;
  color: var(--green-800);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  background: var(--paper-dark);
}

.gift-card h3 {
  margin: 13px 0;
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  line-height: 1.55;
}

.gift-card h3 span {
  display: block;
}

.gift-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.gift-cta {
  display: grid;
  justify-items: center;
  margin-top: 64px;
  color: white;
  text-align: center;
}

.gift-cta > p {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.gift-cta > small {
  margin-top: 11px;
  color: rgb(255 255 255 / 48%);
  font-size: 10px;
}

.profile {
  background: var(--paper);
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  align-items: center;
}

.portrait-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  padding: 36px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 44% 32%, rgb(234 213 157 / 16%), transparent 18%),
    linear-gradient(150deg, #274c3c, #0d1c16 73%);
  border: 1px solid var(--gold);
  box-shadow: 22px 22px 0 var(--paper-dark);
}

.portrait-stage::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 50%;
  width: 175px;
  height: 175px;
  border: 1px solid rgb(234 213 157 / 32%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.portrait-stage::after {
  content: "";
  position: absolute;
  top: 204px;
  left: 50%;
  width: 240px;
  height: 295px;
  background: linear-gradient(145deg, #111b17, #293f35);
  clip-path: polygon(27% 0, 73% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.portrait-fan {
  position: absolute;
  z-index: 2;
  top: 245px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 125px;
  height: 82px;
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: 34px;
  background: var(--paper);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%) rotate(-3deg);
}

.portrait-name {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  padding-top: 26px;
  border-top: 1px solid rgb(234 213 157 / 48%);
}

.portrait-name small {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.portrait-name strong {
  margin: 5px 0;
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
  letter-spacing: 0.15em;
}

.portrait-name span {
  color: rgb(255 255 255 / 45%);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.profile-copy .section-heading {
  margin-bottom: 28px;
}

.profile-copy .section-heading h2 small {
  font-size: 0.48em;
  letter-spacing: 0.06em;
}

.profile-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.profile-titles span {
  padding: 7px 11px;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  background: var(--paper-dark);
}

.profile-copy > p {
  margin: 0 0 18px;
  color: #59564f;
  font-size: 14px;
  line-height: 2;
}

.profile-copy blockquote {
  margin: 35px 0 0;
  padding: 21px 0 21px 30px;
  color: var(--green-800);
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.7;
  border-left: 3px solid var(--gold);
}

.faq {
  background: var(--paper-light);
}

.faq-list {
  border-top: 1px solid var(--gold);
}

.faq-list details {
  background: white;
  border-bottom: 1px solid var(--paper-dark);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 20px 25px;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
}

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

.faq-q,
.faq-answer > span {
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 800;
}

.faq-list summary strong {
  font-size: 15px;
}

.faq-plus {
  color: var(--gold);
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.faq-answer {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin: 0 25px;
  padding: 0 0 27px;
}

.faq-answer p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--green-800);
}

.final-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.book-stage--compact {
  width: 250px;
  height: 340px;
  margin: 0 auto;
}

.book-stage--compact .book {
  transform: scale(0.76) rotateY(-11deg) rotateZ(2deg);
  transform-origin: top center;
}

.book-stage--compact:hover .book {
  transform: scale(0.76) rotateY(-3deg) rotateZ(-1deg) translateY(-8px);
}

.final-book-cover {
  display: block;
  width: min(100%, 330px);
  margin: 0 auto;
  border: 1px solid rgb(234 213 157 / 55%);
  box-shadow: 20px 24px 42px rgb(0 0 0 / 34%);
  transform: rotate(-2deg);
}

.float-card {
  width: min(100%, 330px);
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  animation: float 3s ease-in-out infinite;
}

.float-card .final-book-cover {
  width: 100%;
  margin: 0;
  border: 1px solid rgb(234 213 157 / 55%);
  box-shadow: 20px 24px 42px rgb(0 0 0 / 34%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.final-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.final-copy h2 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 3.1vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.final-copy h2 span {
  display: block;
  white-space: nowrap;
}

.final-includes {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 22px;
}

.final-includes span {
  padding: 8px 12px;
  color: var(--green-950);
  font-size: 11px;
  font-weight: 800;
  background: var(--paper);
}

.final-includes b {
  color: var(--gold-light);
}

.cta-button--pulse {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 32px rgb(8 17 13 / 28%), 0 0 0 0 rgb(233 87 31 / 25%); }
  50% { box-shadow: 0 18px 36px rgb(8 17 13 / 36%), 0 0 0 12px rgb(233 87 31 / 0%); }
}

footer {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 52px 24px;
  color: rgb(255 255 255 / 52%);
  background: var(--green-950);
}

.footer-brand {
  color: white;
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.12em;
}

.footer-brand span {
  margin-left: 8px;
  color: var(--gold);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

footer nav button {
  padding: 0;
  color: rgb(255 255 255 / 55%);
  font-size: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

footer nav button:hover {
  color: white;
}

footer > small {
  font-size: 9px;
  letter-spacing: 0.05em;
}

.mobile-bar {
  display: none;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgb(8 16 12 / 72%);
  backdrop-filter: blur(7px);
}

.modal {
  position: relative;
  width: min(520px, 100%);
  padding: 45px;
  background: var(--paper-light);
  border: 1px solid var(--gold);
  box-shadow: 0 25px 80px rgb(0 0 0 / 35%);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 38px;
  height: 38px;
  color: var(--green-800);
  font-size: 27px;
  font-weight: 300;
  background: none;
  border: 0;
  cursor: pointer;
}

.modal-kicker {
  margin: 0 0 10px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.modal h2 {
  margin: 0 0 20px;
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: 27px;
  line-height: 1.5;
}

.modal p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.modal-note {
  padding: 13px;
  background: var(--paper-dark);
}

.modal-action {
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  color: white;
  font-weight: 800;
  background: var(--green-800);
  border: 0;
  cursor: pointer;
}

.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-lead {
    margin-bottom: 10px;
  }

  .hero-offer--desktop {
    display: none;
  }

  .hero-offer--mobile {
    display: flex;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    margin-top: 5px;
  }

  .cta-note.hero-offer--mobile {
    display: block;
    margin: -4px auto 0;
  }

  .profile-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .profile-layout {
    gap: 70px;
  }

  .profile-portrait {
    width: min(430px, 100%);
    margin: 0 auto;
  }

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

  .gift-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 25px;
    min-height: 0;
  }

  .gift-mark {
    grid-row: 1 / span 4;
    height: 100%;
    min-height: 205px;
    margin: 0;
  }

  .final-layout {
    gap: 20px;
    text-align: center;
  }

  .final-includes,
  .final-copy .cta-button {
    margin-right: auto;
    margin-left: auto;
  }

  .final-copy .cta-note {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 60px;
    padding: 0 12px;
  }

  .brand-crest {
    width: 32px;
    height: 32px;
  }

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

  .brand-note {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 15px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 32px, 430px);
    min-height: 0;
    padding: 38px 0 92px;
  }

  .eyebrow {
    gap: 7px;
    margin-bottom: 20px;
    font-size: 10px;
  }

  .eyebrow span {
    padding: 5px 7px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.2;
  }

  .h1-quote {
    font-size: 0.58em;
  }

  .hero-lead {
    margin: 20px 0 7px;
    font-size: 13px;
    line-height: 1.85;
  }

  .desktop-break {
    display: none;
  }

  .book-caption {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .book-stage {
    width: 260px;
    height: 355px;
  }

  .book {
    transform: scale(0.79) rotateY(-11deg) rotateZ(2deg);
    transform-origin: top center;
  }

  .book-stage:hover .book {
    transform: scale(0.79) rotateY(-3deg) rotateZ(-1deg) translateY(-8px);
  }

  .gift-stamp {
    right: -2px;
    bottom: 43px;
    width: 82px;
    height: 82px;
  }

  .gift-stamp strong {
    font-size: 15px;
  }

  .hero-offer {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    padding: 11px 13px;
    text-align: left;
  }

  .hero-offer .offer-label {
    grid-row: span 2;
    margin-right: 11px;
    padding-right: 11px;
    font-size: 9px;
  }

  .hero-offer strong {
    font-size: 15px;
  }

  .hero-offer > span:last-child {
    margin-left: 0;
    font-size: 9px;
  }

  .cta-button {
    min-height: 67px;
    padding: 10px 14px;
    border-radius: 6px;
  }

  .cta-button span:not(.line-icon) {
    font-size: 15px;
  }

  .cta-button b {
    font-size: 27px;
  }

  .line-icon {
    width: 39px;
    height: 39px;
    font-size: 8px;
  }

  .cta-note {
    font-size: 9px;
  }

  .section-pad {
    padding: 78px 0;
  }

  .section-shell,
  .section-shell.narrow {
    width: min(100% - 32px, 430px);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading > p {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .section-heading h2 {
    font-size: 30px;
    line-height: 1.5;
  }

  .mobile-only {
    display: block;
  }

  .worry-list li {
    grid-template-columns: 45px 1fr;
    min-height: 74px;
  }

  .worry-list span {
    font-size: 13px;
  }

  .worry-list p {
    padding: 14px 35px 14px 16px;
    font-size: 12px;
  }

  .worry-list p::after {
    right: 12px;
    font-size: 15px;
  }

  .bridge-copy {
    margin-top: 44px;
  }

  .bridge-copy p {
    font-size: 16px;
  }

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

  .benefit-card,
  .benefit-card--featured {
    grid-column: auto;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 26px 20px;
  }

  .benefit-number {
    font-size: 23px;
  }

  .benefit-card h3,
  .benefit-card--featured h3 {
    font-size: 19px;
  }

  .benefit-card p,
  .benefit-card--featured p {
    font-size: 12px;
  }

  .gift-grid {
    gap: 12px;
  }

  .gift-card {
    display: block;
    padding: 20px;
  }

  .gift-mark {
    height: 105px;
    min-height: 0;
    margin-bottom: 18px;
    font-size: 48px;
  }

  .gift-card h3 {
    font-size: 18px;
  }

  .gift-cta {
    margin-top: 45px;
  }

  .gift-cta > p {
    font-size: 10px;
  }

  .portrait-stage {
    min-height: 460px;
    padding: 25px;
    box-shadow: 12px 12px 0 var(--paper-dark);
  }

  .portrait-stage::after {
    top: 175px;
    height: 230px;
  }

  .portrait-fan {
    top: 215px;
  }

  .portrait-name strong {
    font-size: 29px;
  }

  .profile-copy blockquote {
    font-size: 19px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 22px;
    gap: 10px;
    min-height: 82px;
    padding: 17px 13px;
  }

  .faq-q,
  .faq-answer > span {
    font-size: 21px;
  }

  .faq-list summary strong {
    font-size: 12px;
    line-height: 1.65;
  }

  .faq-answer {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    margin: 0 13px;
  }

  .final-book {
    height: 290px;
  }

  .final-copy h2 {
    font-size: 29px;
  }

  .final-includes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .final-includes span {
    padding: 6px 8px;
    font-size: 9px;
  }

  footer {
    padding-bottom: 120px;
  }

  .mobile-bar {
    position: fixed;
    z-index: 48;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgb(13 28 22 / 94%);
    border-top: 1px solid rgb(234 213 157 / 27%);
    backdrop-filter: blur(12px);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 58px;
    color: white;
    background: var(--orange);
    border: 0;
    border-radius: 5px;
    box-shadow: 0 8px 22px rgb(0 0 0 / 24%);
    text-decoration: none;
  }

  .mobile-bar .line-icon {
    width: 35px;
    height: 35px;
  }

  .mobile-bar span:not(.line-icon) {
    display: grid;
    text-align: left;
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-bar small {
    font-size: 9px;
    font-weight: 600;
  }

  .modal {
    padding: 38px 25px 25px;
  }

  .modal h2 {
    font-size: 22px;
  }
}

.hero-image-section {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
}

.hero-image-shell {
  display: block;
  width: min(100%, 1672px);
  margin: 0 auto;
  background: var(--paper);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-action {
  display: grid;
  justify-items: center;
  padding: 28px 20px 38px;
  color: var(--green-900);
  text-align: center;
  background:
    linear-gradient(rgb(244 239 229 / 94%), rgb(244 239 229 / 94%)),
    repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgb(41 75 59 / 7%) 6px);
  border-top: 1px solid var(--gold);
}

.hero-action > p {
  margin: 0 0 13px;
  color: var(--green-800);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-action > small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.desktop-device .header-cta--touch,
.desktop-device .touch-line-cta {
  display: none;
}

.desktop-device .header-cta--desktop {
  display: inline-flex;
}

.desktop-device .desktop-line-qr {
  display: flex;
}

.desktop-device .mobile-bar {
  display: none !important;
}

.gift-card.gift-card--image {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.gift-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  border-bottom: 1px solid var(--gold);
}

.gift-card-content {
  padding: 25px 27px 29px;
}

.profile-stage-photo {
  display: block;
  min-height: 0;
  padding: 0;
  aspect-ratio: 1;
  box-shadow: 22px 22px 0 var(--paper-dark);
}

.profile-stage-photo::before,
.profile-stage-photo::after {
  display: none;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-stage-photo .portrait-name {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 70px 28px 25px;
  background: linear-gradient(transparent, rgb(7 17 12 / 88%));
  border-top: 0;
}

@media (max-width: 640px) {
  .hero-image-shell {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    overflow: visible;
  }

  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-action {
    padding: 22px 16px 30px;
  }

  .hero-action > p {
    font-size: 10px;
  }

  .gift-card-content {
    padding: 20px;
  }

  .toc-box {
    padding: 62px 14px 18px;
  }

  .toc-seal {
    width: 72px;
    height: 72px;
    font-size: 16px;
  }

  .toc-chapter h3 {
    padding: 15px 14px;
    font-size: clamp(14px, 4.4vw, 18px);
  }

  .toc-chapter ul {
    padding: 8px 14px 16px 32px;
  }

  .toc-item {
    grid-template-columns: 64px 1fr;
    gap: 8px;
    font-size: 13px;
  }

  .toc-item--plain {
    grid-template-columns: minmax(0, 1fr);
  }

  .toc-item > span {
    font-size: 11px;
  }

  .profile-stage-photo {
    box-shadow: 12px 12px 0 var(--paper-dark);
  }

  .final-book {
    height: auto;
    margin-bottom: 28px;
    padding-right: 8px;
  }

  .final-book-cover {
    width: 100%;
  }

  .float-card {
    position: relative;
    left: -4px;
    width: min(78%, 280px);
  }

  .final-copy {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .final-copy h2 {
    width: 100%;
    font-size: clamp(20px, 5.7vw, 23px);
    letter-spacing: 0;
  }

  .final-includes {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .final-copy .responsive-line-action {
    width: 100%;
    margin: 0 auto;
  }

  .final-copy .jelly-button {
    width: calc(100% - 44px);
    max-width: 330px;
    gap: 9px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .final-copy .jelly-button span:not(.line-icon) {
    font-size: 13px;
  }
}

.split-reveal {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  background: var(--green-950);
}

.split-reveal::before,
.split-reveal::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 12%), transparent 48%),
    var(--gold);
  will-change: transform;
}

.split-reveal::before {
  clip-path: inset(0 50% 0 0);
}

.split-reveal::after {
  clip-path: inset(0 0 0 50%);
}

.split-reveal.is-visible::before {
  animation: splitReveal 0.9s ease forwards;
}

.split-reveal.is-visible::after {
  animation: splitRevealRight 0.9s ease forwards;
}

@keyframes splitReveal {
  to {
    transform: translateX(-105%);
  }
}

@keyframes splitRevealRight {
  to {
    transform: translateX(105%);
  }
}

.halo-button {
  animation: haloButton 1.8s ease-out infinite;
}

@keyframes haloButton {
  0% {
    box-shadow: 0 0 0 0 rgb(233 87 31 / 42%);
  }

  70%,
  100% {
    box-shadow: 0 0 0 18px rgb(233 87 31 / 0%);
  }
}

.jelly-button {
  transform-origin: center;
  animation: jelly 2.4s ease-in-out infinite;
}

@keyframes jelly {
  0%,
  72%,
  100% {
    transform: scale(1, 1);
  }

  12% {
    transform: scale(1.18, 0.82);
  }

  24% {
    transform: scale(0.86, 1.14);
  }

  36% {
    transform: scale(1.08, 0.94);
  }

  48% {
    transform: scale(0.97, 1.03);
  }
}

.liff-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 32px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgb(198 163 94 / 16%), transparent 30%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.liff-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(45deg, transparent 46%, rgb(234 213 157 / 8%) 46%, rgb(234 213 157 / 8%) 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgb(234 213 157 / 6%) 46%, rgb(234 213 157 / 6%) 54%, transparent 54%);
  background-size: 72px 72px;
}

.liff-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(calc(100vw - 36px), 480px);
  padding: 38px 34px 32px;
  overflow: hidden;
  color: var(--sumi);
  text-align: center;
  background: var(--paper-light);
  border: 1px solid var(--gold);
  box-shadow: 0 28px 90px rgb(0 0 0 / 35%);
}

.liff-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.liff-book-mini {
  width: 92px;
  margin-bottom: 24px;
  box-shadow: 8px 10px 22px rgb(8 17 13 / 25%);
  transform: rotate(-2deg);
}

.liff-book-mini img {
  display: block;
  width: 100%;
}

.liff-card h1 {
  max-width: 100%;
  margin: 8px 0 12px;
  color: var(--green-900);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.liff-card > p:not(.liff-kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.liff-card > small {
  margin-top: 20px;
  color: #888279;
  font-size: 9px;
  line-height: 1.7;
}

.liff-loader {
  width: 44px;
  height: 44px;
  border: 3px solid var(--paper-dark);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: liffSpin 0.85s linear infinite;
}

@keyframes liffSpin {
  to {
    transform: rotate(360deg);
  }
}

.liff-status-mark {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 10px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  background: var(--orange);
  border-radius: 50%;
}

.liff-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 12px 20px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  background: var(--orange);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgb(201 65 18 / 24%);
  cursor: pointer;
}

.liff-secondary-button {
  margin-top: 10px;
  color: var(--orange);
  background: white;
  border: 2px solid var(--orange);
  box-shadow: none;
}

#liff-action {
  width: 100%;
}

@media (max-width: 480px) {
  .liff-page {
    padding: 18px 12px;
  }

  .liff-card {
    width: min(calc(100vw - 24px), 480px);
    padding: 30px 22px 25px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

[hidden] { display: none !important; }
