:root {
  color-scheme: light;
  --paper: #f8f8f6;
  --ink: #171717;
  --muted: #666666;
  --line: #ddddda;
  --accent: #171717;
  --canvas: #e7e7e5;
  --number-font: Arial, Helvetica, sans-serif;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
}

a {
  color: inherit;
}

.mobile-only {
  display: none;
}

.deck-toolbar {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 40px), 1320px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand,
.toolbar-actions {
  pointer-events: auto;
}

.brand {
  display: block;
  width: 124px;
  text-decoration: none;
}

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

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-nav {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(42, 41, 38, 0.12);
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.82);
  backdrop-filter: blur(12px);
}

.page-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8b4ac;
  transition: transform 180ms ease, background 180ms ease;
}

.page-dot.is-active {
  transform: scale(1.3);
  background: var(--ink);
}

.pdf-download {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(42, 41, 38, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(247, 245, 241, 0.88);
  box-shadow: 0 8px 24px rgba(30, 28, 24, 0.08);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.pdf-download:hover,
.pdf-download:focus-visible {
  background: #fff;
}

.pdf-download:disabled {
  cursor: wait;
  opacity: 0.72;
}

.slide.pdf-export {
  width: 1280px !important;
  height: 720px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.slide-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.slide {
  position: relative;
  width: min(calc(100vw - 64px), calc((100svh - 64px) * 16 / 9), 1440px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(39, 35, 30, 0.16);
}

.slide-cover {
  display: grid;
  grid-template-columns: 61.5% 38.5%;
}

.cover-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12.2% 9.8% 5.2%;
}

.eyebrow {
  margin: 0 0 8%;
  color: #696660;
  font-size: clamp(0.66rem, 0.78vw, 0.86rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.11em;
}

.cover-copy h1 {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(1.45rem, 2.58vw, 3.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.cover-lead {
  margin-top: 7%;
  color: #55524d;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.9;
}

.cover-lead p {
  margin: 0;
}

.cover-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8%;
  margin-top: 7%;
}

.cover-benefits article {
  display: flex;
  min-height: clamp(4.5rem, 6.4vw, 6.1rem);
  flex-direction: column;
  justify-content: space-between;
  padding: 8% 9%;
  background: #ededeb;
}

.cover-benefits article.is-dark {
  color: #f9f8f5;
  background: #171717;
}

.cover-benefits span {
  color: #555555;
  font-family: var(--number-font);
  font-size: clamp(0.66rem, 0.7vw, 0.8rem);
  font-weight: 700;
}

.cover-benefits .is-dark span {
  color: #cfcfcd;
}

.cover-benefits strong {
  font-size: clamp(0.72rem, 0.82vw, 0.94rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.price-note {
  margin: 4.5% 0 0;
  color: #77736d;
  font-size: clamp(0.86rem, 0.94vw, 1rem);
  letter-spacing: 0.03em;
}

.price-note span {
  padding: 0 0.45em;
  color: #b8b2a8;
}

.cover-image {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.cover-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-number {
  position: absolute;
  right: 2.5%;
  bottom: 2.7%;
  color: #aaa59c;
  font-size: clamp(0.4rem, 0.52vw, 0.64rem);
}

/* V2: information-led visual system for the opening slides */
.modern-cover,
.modern-challenge {
  color: #151515;
  background: #f4f4f2;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Yu Gothic", sans-serif;
}

.modern-topline {
  position: absolute;
  z-index: 3;
  top: 5.4%;
  right: 6.2%;
  left: 6.2%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #191919;
  font-size: clamp(0.4rem, 0.52vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.modern-topline span:nth-child(2) {
  justify-self: center;
  color: #747474;
  font-weight: 500;
}

.modern-topline span:last-child {
  justify-self: end;
}

.modern-cover-copy {
  position: absolute;
  z-index: 2;
  top: 21%;
  left: 7.8%;
  width: 56%;
}

.modern-eyebrow {
  margin: 0 0 1.2em;
  color: #717171;
  font-size: clamp(0.55rem, 0.66vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.modern-cover-copy h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.85vw, 3.62rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.065em;
}

.modern-cover-copy h1 strong {
  display: inline-block;
  padding: 0.02em 0.13em 0.07em 0.08em;
  color: #111;
  background: #d5ff00;
  font-weight: 600;
}

.modern-cover-copy > p:last-child {
  width: min(95%, 32rem);
  margin: 2.25em 0 0;
  color: #5f5f5f;
  font-size: clamp(0.72rem, 0.86vw, 1rem);
  line-height: 1.75;
}

.modern-cover-visual {
  position: absolute;
  top: 15.2%;
  right: 7.8%;
  width: 29.5%;
  height: 56%;
  margin: 0;
  overflow: hidden;
  background: #161616;
}

.modern-cover-visual figcaption {
  position: absolute;
  z-index: 2;
  top: 7%;
  left: 8%;
  color: #f7f7f7;
  font-size: clamp(0.42rem, 0.56vw, 0.66rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.035em;
}

.modern-cover-visual img {
  position: absolute;
  right: -18%;
  bottom: -10%;
  width: 122%;
  height: 80%;
  object-fit: contain;
  filter: none;
}

.modern-orb {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 7%;
  display: grid;
  width: clamp(3rem, 5.2vw, 5.9rem);
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  color: #111;
  background: #d5ff00;
  font-size: clamp(0.9rem, 1.3vw, 1.55rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
}

.modern-orb small {
  margin-top: 0.28em;
  font-size: 0.35em;
  letter-spacing: 0.035em;
}

.modern-cover-steps {
  position: absolute;
  right: 7.8%;
  bottom: 7%;
  left: 7.8%;
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 1fr;
  gap: 0.8%;
}

.modern-cover-steps div {
  display: grid;
  min-height: clamp(4.4rem, 7vw, 7rem);
  padding: 5.5% 7%;
  background: #e7e7e5;
}

.modern-cover-steps div.is-lime {
  background: #d5ff00;
}

.modern-cover-steps div.is-black {
  color: #fff;
  background: #161616;
}

.modern-cover-steps b {
  font-size: clamp(0.48rem, 0.57vw, 0.66rem);
  font-weight: 600;
}

.modern-cover-steps strong {
  align-self: end;
  margin-top: 0.75em;
  font-size: clamp(0.85rem, 1.18vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.modern-cover-steps span {
  margin-top: 0.45em;
  font-size: clamp(0.52rem, 0.64vw, 0.74rem);
  line-height: 1.25;
}

.modern-challenge {
  min-height: 100%;
}

.challenge-copy {
  position: absolute;
  top: 20%;
  left: 7.8%;
  width: 36%;
}

.challenge-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.25vw, 4.05rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.challenge-copy > p:last-child {
  margin: 2.1em 0 0;
  color: #595959;
  font-size: clamp(0.72rem, 0.86vw, 1rem);
  line-height: 1.78;
}

.challenge-cards {
  position: absolute;
  top: 23%;
  right: 7.8%;
  width: 47%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8%;
}

.challenge-card {
  display: flex;
  min-height: clamp(12rem, 22.5vw, 17rem);
  flex-direction: column;
  padding: 9% 9%;
  color: #111;
  background: #e4e4e2;
}

.challenge-card.is-black {
  color: #fff;
  background: #171717;
}

.challenge-card.is-lime {
  background: #d5ff00;
}

.challenge-card span {
  font-size: clamp(0.48rem, 0.56vw, 0.66rem);
  font-weight: 700;
}

.challenge-card h3 {
  margin: auto 0 0;
  font-size: clamp(0.92rem, 1.28vw, 1.54rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.challenge-card p {
  margin: 0.8em 0 0;
  font-size: clamp(0.55rem, 0.68vw, 0.8rem);
  line-height: 1.55;
}

.challenge-statement {
  position: absolute;
  right: 7.8%;
  bottom: 14.5%;
  left: 7.8%;
  margin: 0;
  padding-top: 1.2em;
  border-top: 1px solid #cfcfcd;
  font-size: clamp(0.78rem, 1.04vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.slide-role {
  display: grid;
  grid-template-columns: 52% 48%;
  padding: 4%;
}

.role-copy {
  position: relative;
  z-index: 2;
  padding-right: 8%;
}

.section-label {
  margin: 0 0 5%;
  color: #8a857e;
  font-size: clamp(0.82rem, 0.9vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section-label span {
  margin-right: 0.75em;
  color: var(--accent);
}

.role-copy h2 {
  margin: 0;
  font-family: "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 1.76vw, 2.15rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.role-lead {
  margin: 5.5% 0 0;
  color: #55524e;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.85;
}

.role-points {
  display: grid;
  gap: 4.2%;
  margin: 6.5% 0 0;
  padding: 0;
  list-style: none;
}

.role-points li {
  display: grid;
  grid-template-columns: 2.4em 1fr;
  gap: 0.7em;
}

.point-number {
  color: var(--accent);
  font-family: var(--number-font);
  font-size: clamp(0.9rem, 1vw, 1.08rem);
}

.role-points h3 {
  margin: 0 0 0.35em;
  font-size: clamp(0.96rem, 1.04vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.role-points p {
  margin: 0;
  color: #747069;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.65;
}

.role-visual {
  align-self: center;
  margin: 3% 0 0;
  text-align: center;
}

.role-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 14px rgba(26, 23, 19, 0.12));
}

.role-visual figcaption {
  margin-top: 2.5%;
  color: #85817a;
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  letter-spacing: 0.04em;
}

.slide-problem,
.slide-solution {
  display: block;
  padding: 4%;
}

.slide-problem .role-copy,
.slide-solution .media-copy {
  width: 49%;
  padding: 0;
}

.slide-problem .role-copy h2,
.slide-solution .media-copy h2 {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(1.35rem, 2.05vw, 2.5rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.slide-problem .role-lead,
.slide-solution .media-lead {
  margin-top: 5.5%;
  font-size: clamp(0.9rem, 1.02vw, 1.16rem);
  line-height: 1.75;
}

.problem-note,
.solution-note {
  position: absolute;
  top: 17.5%;
  right: 6%;
  width: 35%;
  margin: 0;
  color: #514d47;
  font-size: clamp(1rem, 1.42vw, 1.7rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.problem-blocks,
.solution-blocks {
  position: absolute;
  right: 4%;
  bottom: 12%;
  left: 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1%;
}

.problem-blocks article,
.solution-blocks article {
  display: flex;
  min-height: clamp(7.5rem, 12vw, 10.8rem);
  flex-direction: column;
  padding: 4.5% 5%;
  border: 1px solid #ddd8cf;
  background: #ebe8e2;
}

.problem-blocks .is-dark {
  color: #f9f8f5;
  border-color: #34312c;
  background: #34312c;
}

.solution-blocks .is-accent {
  border-color: #d0b99b;
  background: #e6dccd;
}

.problem-blocks span,
.solution-blocks span {
  color: #9d7952;
  font-family: var(--number-font);
  font-size: clamp(0.65rem, 0.76vw, 0.86rem);
  font-weight: 700;
}

.problem-blocks .is-dark span {
  color: #dfc59f;
}

.problem-blocks strong,
.solution-blocks strong {
  margin-top: auto;
  font-size: clamp(0.86rem, 1.02vw, 1.18rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.problem-blocks p,
.solution-blocks p {
  margin: 0.55em 0 0;
  color: #69655e;
  font-size: clamp(0.76rem, 0.88vw, 1rem);
  line-height: 1.58;
}

.problem-blocks .is-dark p {
  color: #e6e1d9;
}

/* Information-first story slides */
.story-slide {
  color: #171717;
  background: #f8f8f6;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 5.5%;
  padding: 4%;
}

.story-header {
  width: min(100%, 48rem);
}

.story-header .section-label {
  margin-bottom: 2.4%;
}

.story-header h2 {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(1.65rem, 2.35vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.story-header > p:last-child {
  margin: 2.1% 0 0;
  color: #5f5b55;
  font-size: clamp(0.95rem, 1.06vw, 1.2rem);
  line-height: 1.7;
}

.story-panel {
  min-height: 0;
  border: 1px solid #ddddda;
  background: #f1f1ef;
}

.story-slide .section-label span {
  color: #171717;
}

.post-life-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  border: 0;
  background: transparent;
}

.post-life-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 2.2%;
  min-height: 0;
  padding: 0;
}

.post-life-step {
  display: grid;
  grid-template-rows: minmax(0, 42%) 1fr;
  min-width: 0;
  min-height: 0;
  background: #f8f8f6;
}

.post-life-step-post {
  color: #f8f7f4;
  background: #171717;
}

.post-life-step-faded {
  background: #e1e1de;
}

.post-life-media {
  min-height: 0;
  overflow: hidden;
}

.post-life-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.post-life-step-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10% 9%;
  border-bottom: 1px solid #d2d2cf;
}

.post-life-step span,
.search-intent > span,
.discovery-card span,
.archive-step > span,
.archive-post span {
  color: #555555;
  font-family: var(--number-font);
  font-size: clamp(0.74rem, 0.8vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.015em;
}

.post-life-step-post span {
  color: #d9d9d6;
}

.post-life-step strong {
  display: block;
  margin-top: 0.75em;
  font-size: clamp(1.05rem, 1.35vw, 1.48rem);
  font-weight: 700;
  line-height: 1.35;
}

.post-life-step p,
.discovery-card p,
.archive-step p {
  margin: 0.55em 0 0;
  font-size: clamp(0.86rem, 0.95vw, 1.08rem);
  line-height: 1.62;
}

.post-life-step-post p {
  color: #e2ddd5;
}

.post-life-step-post .post-life-step-copy {
  border-bottom-color: #535350;
}

.post-life-arrow {
  align-self: center;
  color: #171717;
  font-family: var(--number-font);
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.panel-conclusion {
  margin: 0;
  padding: 2.5% 4%;
  color: #f9f8f5;
  background: #171717;
  font-size: clamp(0.98rem, 1.18vw, 1.36rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.search-gap-panel {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 3%;
  padding: 3%;
  background: #ececea;
}

.search-intent {
  display: flex;
  flex-direction: column;
  padding: 9% 10%;
  color: #f9f8f5;
  background: #171717;
}

.search-intent > span {
  color: #d9d9d6;
}

.search-intent h3 {
  margin: 1em 0 0;
  font-size: clamp(1.1rem, 1.32vw, 1.58rem);
  line-height: 1.35;
}

.search-intent ul {
  display: grid;
  gap: 0.7em;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.search-intent li {
  padding: 0.78em 0.85em;
  color: #171717;
  background: #f8f8f6;
  font-size: clamp(0.86rem, 0.98vw, 1.1rem);
  font-weight: 700;
}

.discovery-card {
  display: grid;
  grid-template-columns: 50% 1fr;
  min-width: 0;
  background: #f8f7f4;
}

.discovery-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.discovery-card div {
  display: flex;
  flex-direction: column;
  padding: 9% 9%;
}

.discovery-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.16rem, 1.48vw, 1.78rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.discovery-card p {
  color: #615d56;
}

.archive-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.7%;
  align-items: stretch;
  padding: 3%;
  background: #e9e6df;
}

.archive-step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 8% 9%;
  background: #f8f7f4;
}

.archive-post {
  padding: 0;
  overflow: hidden;
}

.archive-post img {
  width: 100%;
  height: 57%;
  object-fit: cover;
}

.archive-post div {
  padding: 7% 9%;
}

.archive-step strong {
  display: block;
  margin-top: auto;
  font-size: clamp(1rem, 1.19vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.archive-page ul {
  display: grid;
  gap: 0.55em;
  margin: 1.3em 0 0;
  padding: 0;
  list-style: none;
}

.archive-page li {
  padding-bottom: 0.45em;
  border-bottom: 1px solid #ded8cf;
  color: #5d5952;
  font-size: clamp(0.8rem, 0.9vw, 1.04rem);
}

.archive-arrow {
  align-self: center;
  color: #96734d;
  font-family: Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.5rem);
}

.archive-search {
  color: #f9f8f5;
  background: #34312c;
}

.archive-search > span {
  color: #ddc09a;
}

.archive-search p {
  color: #e1dcd4;
}

.service-proposal-panel {
  display: grid;
  grid-template-columns: 57% 43%;
  overflow: hidden;
  border: 0;
  color: #f8f8f6;
  background: #171717;
}

.service-proposal-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 7% 8%;
}

.service-proposal-copy > span {
  color: #d9d9d6;
  font-family: var(--number-font);
  font-size: clamp(0.74rem, 0.8vw, 0.92rem);
  font-weight: 700;
}

.service-proposal-copy h3 {
  margin: 1.1em 0 0;
  font-size: clamp(1.25rem, 1.62vw, 2rem);
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.service-proposal-copy > p {
  margin: 1.2em 0 0;
  color: #e0e0dd;
  font-size: clamp(0.84rem, 0.96vw, 1.1rem);
  line-height: 1.7;
}

.service-proposal-copy ul {
  display: grid;
  gap: 0.5em;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-proposal-copy li {
  padding: 0.65em 0;
  border-bottom: 1px solid #5a5a58;
  color: #f8f8f6;
  font-size: clamp(0.82rem, 0.92vw, 1.05rem);
  font-weight: 700;
}

.service-proposal-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.service-proposal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.service-proposal-photo figcaption {
  position: absolute;
  right: 8%;
  bottom: 8%;
  margin: 0;
  padding: 0.7em 0.85em;
  color: #171717;
  background: #f8f8f6;
  font-family: var(--number-font);
  font-size: clamp(0.7rem, 0.82vw, 0.94rem);
  font-weight: 700;
  line-height: 1.15;
}

/* 03 / Instagram post to customer action */
.story-customer-flow {
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 3.2%;
}

.flow-story-header {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.72fr);
  column-gap: 7%;
  align-items: end;
}

.flow-story-header .section-label {
  grid-column: 1 / -1;
  margin-bottom: 1.7%;
}

.flow-story-header > p:last-child {
  margin: 0 0 0.15em;
}

.big-flow-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.15%;
  align-items: stretch;
  padding: 1.8%;
  background: #e9e9e7;
}

.big-flow-step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 8% 8.5%;
  border: 1px solid #d4d4d1;
  background: #f8f8f6;
}

.big-flow-step > span,
.flow-instagram div > span {
  color: #686866;
  font-family: var(--number-font);
  font-size: clamp(0.72rem, 0.76vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.big-flow-step h3 {
  margin: 0.9em 0 0;
  font-size: clamp(1.02rem, 1.17vw, 1.36rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.big-flow-step p {
  margin: 0.75em 0 0;
  color: #5f5f5c;
  font-size: clamp(0.8rem, 0.87vw, 0.98rem);
  line-height: 1.65;
}

.big-flow-step ul {
  display: grid;
  gap: 0.35em;
  margin: auto 0 0;
  padding: 1em 0 0;
  list-style: none;
}

.big-flow-step li {
  padding: 0.48em 0;
  border-bottom: 1px solid #d7d7d4;
  font-size: clamp(0.76rem, 0.82vw, 0.92rem);
  font-weight: 700;
}

.flow-instagram {
  padding: 0;
  overflow: hidden;
  color: #f8f8f6;
  border: 0;
  background: #171717;
}

.flow-instagram img {
  width: 100%;
  height: 48%;
  min-height: 0;
  object-fit: cover;
  filter: none;
}

.flow-instagram div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 7.5% 8.5%;
}

.flow-instagram div > span {
  color: #d8d8d5;
}

.flow-instagram p {
  color: #d9d9d6;
}

.flow-search-box {
  margin-top: auto;
  padding: 0.78em 0.75em;
  border: 1px solid #bdbdba;
  background: #fff;
  font-size: clamp(0.73rem, 0.78vw, 0.88rem);
  font-weight: 700;
  white-space: nowrap;
}

.flow-visit {
  color: #f8f8f6;
  border-color: #171717;
  background: #171717;
}

.flow-visit > span,
.flow-visit p {
  color: #d7d7d4;
}

.flow-visit li {
  border-bottom-color: #525250;
}

.big-flow-arrow {
  align-self: center;
  color: #171717;
  font-family: Arial, sans-serif;
  font-size: clamp(1.25rem, 1.65vw, 2rem);
  font-weight: 400;
}

.flow-outcome {
  margin: 0;
  padding: 0.85em 1.1em;
  color: #f8f8f6;
  background: #171717;
  font-size: clamp(0.82rem, 0.92vw, 1.05rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.slide-media {
  display: grid;
  grid-template-columns: 49% 51%;
  padding: 4%;
}

.media-copy {
  padding: 0 12% 0 6%;
}

.media-copy h2,
.contents-header h2,
.pricing-header h2,
.options-copy h2,
.after-copy h2 {
  margin: 0;
  font-family: "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 1.85vw, 2.25rem);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.025em;
}

.media-lead,
.contents-header > p,
.pricing-header > p,
.options-copy > p,
.after-lead {
  color: #5f5b55;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.9;
}

.media-lead {
  margin: 7% 0 0;
}

.media-points {
  display: grid;
  gap: 1em;
  margin: 9% 0 0;
  padding: 0;
  list-style: none;
  color: #6b6760;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.65;
}

.media-points li {
  display: grid;
  grid-template-columns: 0.65em 1fr;
  gap: 0.8em;
}

.media-points li::before,
.pricing-plan li::before {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #a4855b;
}

.media-photo {
  align-self: center;
  height: 76%;
  margin: 2% 0 0;
  overflow: hidden;
}

.media-photo img,
.after-photo img,
.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4%;
  padding: 4%;
}

.seo-copy {
  padding-right: 5%;
}

.seo-copy h2 {
  margin: 0;
  font-family: "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 1.85vw, 2.25rem);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.025em;
}

.seo-lead {
  margin: 7% 0 0;
  color: #5f5b55;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.9;
}

.seo-statement {
  margin: 10% 0 0;
  padding-top: 6%;
  border-top: 1px solid #d8d2c8;
  color: #9b7952;
  font-family: "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.95rem, 1.12vw, 1.32rem);
  line-height: 1.7;
}

.seo-flow {
  position: relative;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
  padding: 6% 3.5% 9%;
  border-top: 1px solid #d7d1c7;
  border-bottom: 1px solid #d7d1c7;
}

.flow-step {
  position: relative;
}

.flow-step:not(:last-of-type)::after {
  position: absolute;
  top: 1.2em;
  left: calc(100% + 13%);
  width: 66%;
  border-top: 1px solid #b9a98f;
  content: "";
}

.flow-step:not(:last-of-type)::before {
  position: absolute;
  top: calc(1.2em - 3px);
  right: -12%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #b9a98f;
  border-right: 1px solid #b9a98f;
  content: "";
  transform: rotate(45deg);
}

.flow-number {
  margin: 0 0 3.3em;
  color: #a47e50;
  font-family: var(--number-font);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
}

.flow-step h3 {
  margin: 0;
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  line-height: 1.55;
}

.flow-step > p:last-child {
  margin: 0.7em 0 0;
  color: #716c64;
  font-size: clamp(0.75rem, 0.82vw, 0.86rem);
  line-height: 1.7;
}

.seo-flow-note {
  position: absolute;
  right: 3.5%;
  bottom: 6%;
  left: 3.5%;
  margin: 0;
  color: #766d60;
  font-size: clamp(0.76rem, 0.84vw, 0.9rem);
  line-height: 1.6;
  text-align: center;
}

.slide-contents {
  padding: 4%;
}

.contents-header {
  display: grid;
  grid-template-columns: 34% 1fr;
  column-gap: 8%;
  align-items: end;
}

.contents-header .section-label {
  grid-column: 1 / -1;
  margin-bottom: 4%;
}

.contents-header > p {
  margin: 0 0 0.15em;
}

.content-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5%;
  margin-top: 4%;
}

.slide-contents .contents-header h2 {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.content-feature {
  overflow: hidden;
  border: 1px solid #ddddda;
  background: #f1f1ef;
}

.content-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  filter: none;
}

.content-feature h3 {
  margin: 1.25em 1.25em 0.45em;
  font-size: clamp(0.96rem, 1.04vw, 1.12rem);
  letter-spacing: 0.03em;
}

.content-feature p,
.contents-note {
  color: #68645d;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.75;
}

.content-feature p {
  margin: 0 1.4em 1.5em;
}

.content-feature .feature-note {
  margin-top: -0.8em;
  color: #8b857c;
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  line-height: 1.55;
}

.contents-note {
  margin: 1.8% 0 0;
}

.slide-pricing {
  padding: 4%;
}

.pricing-header {
  display: grid;
  grid-template-columns: 42% 1fr;
  column-gap: 7%;
}

.pricing-header .section-label {
  grid-column: 1 / -1;
  margin-bottom: 3.8%;
}

.pricing-header > p,
.pricing-summary > p {
  align-self: end;
  margin: 0;
}

.pricing-summary {
  align-self: end;
}

.pricing-summary > p {
  margin: 0;
}

.pricing-summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6em 1.4em;
  margin: 1.1em 0 0;
  padding: 0;
  color: #6b6760;
  font-size: clamp(0.75rem, 0.82vw, 0.88rem);
  line-height: 1.55;
  list-style: none;
}

.pricing-summary li {
  display: grid;
  grid-template-columns: 0.6em 1fr;
  gap: 0.55em;
}

.pricing-summary li::before {
  width: 0.35em;
  height: 0.35em;
  margin-top: 0.5em;
  border-radius: 50%;
  background: #a4855b;
  content: "";
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2%;
  margin-top: 6%;
}

.pricing-plan {
  min-height: 45%;
  padding: 5.5% 6.5%;
  border: 1px solid #d9d3ca;
}

.pricing-plan.is-featured {
  background: #efede7;
  border-color: #bda67f;
}

.plan-name {
  margin: 0;
  color: #6e6960;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
}

.plan-price {
  margin: 13% 0 10%;
  padding-bottom: 10%;
  border-bottom: 1px solid #cfc8bb;
  font-family: var(--number-font);
  font-size: clamp(1rem, 1.7vw, 2rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
}

.plan-price small {
  font-family: inherit;
  font-size: 0.48em;
}

.pricing-plan ul {
  display: grid;
  gap: 0.65em;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #69655e;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.5;
}

.pricing-plan li {
  display: grid;
  grid-template-columns: 0.65em 1fr;
  gap: 0.7em;
}

.campaign-note {
  margin: 3.2% 0 0;
  color: #99764e;
  font-size: clamp(0.78rem, 0.84vw, 0.9rem);
  text-align: center;
}

.slide-options {
  display: grid;
  grid-template-columns: 37% 63%;
  padding: 4%;
}

.options-copy {
  display: flex;
  flex-direction: column;
  padding: 0 10% 0 2%;
}

.options-copy > p {
  margin: 7% 0 0;
}

.options-table-wrap {
  padding: 4.5% 6%;
  border: 1px solid #ded8cf;
  background: #f1efe9;
}

.options-table-wrap h3 {
  margin: 0 0 5%;
  color: #746e65;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  font-weight: 600;
}

.options-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6%;
  margin: 0;
}

.options-table div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1em;
  min-height: 0;
  margin-bottom: 0.8em;
  padding-bottom: 0.55em;
  border-bottom: 1px solid #d9d2c8;
  color: #5e5a54;
  font-size: clamp(0.76rem, 0.84vw, 0.88rem);
  line-height: 1.45;
}

.options-table dt,
.options-table dd {
  margin: 0;
}

.options-table dd {
  flex: 0 0 auto;
  font-family: var(--number-font);
  color: #332f2a;
  font-variant-numeric: tabular-nums;
}

.pr-detail,
.options-footnote {
  margin: 4% 0 0;
  color: #746e65;
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
}

.options-footnote {
  margin-top: 2%;
}

.slide-after {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: 8%;
  padding: 4%;
}

.after-copy {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

.after-lead {
  margin: 6% 0 0;
}

.draft-list {
  display: grid;
  gap: 0;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.draft-list li {
  display: grid;
  grid-template-columns: 1.8em 1fr;
  column-gap: 0.8em;
  padding: 1.5em 0;
  border-bottom: 1px solid #ddd7ce;
}

.draft-list li:first-child {
  border-top: 1px solid #ddd7ce;
}

.draft-list span {
  color: var(--accent);
  font-family: var(--number-font);
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  font-weight: 700;
}

.draft-list h3,
.draft-list p {
  margin: 0;
  line-height: 1.55;
}

.draft-list h3 {
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 600;
}

.draft-list p {
  margin-top: 0.7em;
  color: #6b6760;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.8;
}

.draft-free {
  margin: 4% 0 0;
  color: #9b7952;
  font-size: clamp(0.84rem, 0.92vw, 0.98rem);
  font-weight: 700;
}

.after-photo {
  align-self: center;
  height: 84%;
  margin: 0;
  overflow: hidden;
}

.contact-link {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  padding-top: 3.5%;
  border-top: 1px solid #d8d2c8;
  font-family: Georgia, "Noto Serif CJK JP", serif;
  font-size: clamp(0.7rem, 1.15vw, 1.36rem);
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #9c7850;
}

/* Complete sales narrative */
.slide-benefits,
.slide-included,
.slide-onboarding {
  padding: 4%;
}

.benefits-header,
.included-header,
.onboarding-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  column-gap: 7%;
  align-items: end;
}

.benefits-header .section-label,
.included-header .section-label,
.onboarding-header .section-label {
  grid-column: 1 / -1;
  margin-bottom: 3.2%;
}

.benefits-header h2,
.included-header h2,
.onboarding-header h2,
.final-copy h2 {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(1.55rem, 2.15vw, 2.65rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.benefits-header > p,
.included-header > p,
.onboarding-header > p {
  margin: 0 0 0.2em;
  color: #5f5f5c;
  font-size: clamp(0.9rem, 0.98vw, 1.08rem);
  line-height: 1.72;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4%;
  margin-top: 4.2%;
}

.benefit-grid article {
  display: flex;
  min-height: clamp(15rem, 22vw, 20rem);
  flex-direction: column;
  padding: 6.5% 7%;
  border: 1px solid #d6d6d3;
  background: #eeeeec;
}

.benefit-grid article:nth-child(2) {
  background: #f8f8f6;
}

.benefit-grid article.is-dark {
  color: #f8f8f6;
  border-color: #171717;
  background: #171717;
}

.benefit-grid span,
.included-grid span,
.final-request > span,
.final-deliverables > span {
  color: #646462;
  font-family: var(--number-font);
  font-size: clamp(0.74rem, 0.8vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.benefit-grid .is-dark span {
  color: #d2d2cf;
}

.benefit-grid strong {
  margin-top: auto;
  font-size: clamp(1.18rem, 1.5vw, 1.78rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.benefit-grid p {
  margin: 1em 0 0;
  color: #5f5f5c;
  font-size: clamp(0.86rem, 0.94vw, 1.02rem);
  line-height: 1.72;
}

.benefit-grid .is-dark p {
  color: #d5d5d2;
}

.benefit-summary {
  margin: 2.2% 0 0;
  padding: 0.8em 1em;
  color: #f8f8f6;
  background: #171717;
  font-size: clamp(0.9rem, 1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.2%;
  margin-top: 4%;
}

.included-grid article {
  position: relative;
  min-height: clamp(8.5rem, 12.5vw, 11.2rem);
  padding: 5.5% 6%;
  border: 1px solid #d8d8d5;
  background: #f1f1ef;
}

.included-grid article.is-dark {
  color: #f8f8f6;
  border-color: #171717;
  background: #171717;
}

.included-grid .is-dark span,
.included-grid .is-dark p {
  color: #d4d4d1;
}

.included-grid h3 {
  margin: 1.2em 0 0;
  font-size: clamp(1rem, 1.12vw, 1.28rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.included-grid p {
  margin: 0.7em 0 0;
  color: #5f5f5c;
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  line-height: 1.62;
}

.compact-pricing-header {
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
}

.pricing-header h2,
.options-copy h2 {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.compact-pricing-header > p {
  margin: 0 0 0.2em;
  color: #5f5f5c;
  font-size: clamp(0.86rem, 0.94vw, 1.02rem);
  line-height: 1.7;
}

.pricing-with-images .pricing-plans {
  gap: 2.2%;
  margin-top: 2.6%;
}

.pricing-with-images .pricing-plan {
  display: flex;
  position: relative;
  min-height: 0;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-color: #d5d5d2;
  background: #f1f1ef;
}

.pricing-with-images .pricing-plan.is-featured {
  color: #f8f8f6;
  border-color: #171717;
  background: #171717;
}

.plan-image {
  display: none;
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: clamp(3.7rem, 5vw, 5.2rem);
  height: clamp(3.7rem, 5vw, 5.2rem);
  object-fit: cover;
  filter: none;
}

.plan-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 5.2% 6%;
}

.pricing-with-images .plan-name {
  min-height: 0;
  padding-right: 0;
  color: #585855;
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  font-weight: 700;
}

.pricing-with-images .is-featured .plan-name,
.pricing-with-images .is-featured ul,
.pricing-with-images .is-featured .plan-for {
  color: #e0e0dd;
}

.pricing-with-images .plan-price {
  margin: 0.48em 0 0;
  padding: 0 0 0.5em;
  border-bottom-color: #c6c6c2;
  font-size: clamp(1.45rem, 1.9vw, 2.3rem);
}

.pricing-with-images .is-featured .plan-price {
  border-bottom-color: #535350;
}

.plan-for {
  min-height: 3.1em;
  margin: 0.65em 0 0;
  color: #62625f;
  font-size: clamp(0.78rem, 0.84vw, 0.94rem);
  font-weight: 700;
  line-height: 1.5;
}

.plan-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.1rem 0 1rem;
  justify-content: start;
}

.plan-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: none;
}

.pricing-with-images .pricing-plan ul {
  gap: 0.42em;
  margin-top: 0.8em;
  font-size: clamp(0.76rem, 0.82vw, 0.92rem);
  line-height: 1.48;
}

.pricing-with-images .pricing-plan li {
  display: grid;
  grid-template-columns: 0.5em 1fr;
  gap: 0.48em;
}

.pricing-with-images .pricing-plan li::before {
  content: "";
}

.plan-campaign {
  margin: auto 0 0;
  padding-top: 0.8em;
  color: #fff;
  font-size: clamp(0.76rem, 0.82vw, 0.92rem);
  font-weight: 700;
}

.pricing-tax {
  margin: 1.2% 0 0;
  color: #70706d;
  font-size: clamp(0.74rem, 0.8vw, 0.88rem);
  text-align: right;
}

.options-table-wrap {
  border-color: #d8d8d5;
  background: #f1f1ef;
}

.options-table-wrap h3,
.pr-detail,
.options-footnote,
.options-copy > p {
  color: #5f5f5c;
}

.options-table div {
  border-bottom-color: #d2d2cf;
  color: #555552;
}

.options-table dd {
  color: #171717;
}

.options-tax {
  margin-top: auto !important;
  padding-top: 1em;
  border-top: 1px solid #d5d5d2;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem) !important;
  font-weight: 700;
}

.slide-onboarding {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 4.5%;
}

.onboarding-steps {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding-steps li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 5% 5.5%;
  border: 1px solid #d7d7d4;
  background: #f1f1ef;
}

.onboarding-steps li:last-child {
  color: #f8f8f6;
  border-color: #171717;
  background: #171717;
}

.onboarding-steps > li > span {
  font-family: var(--number-font);
  font-size: clamp(1.1rem, 1.35vw, 1.62rem);
  font-weight: 700;
}

.onboarding-steps h3 {
  margin: 0;
  font-size: clamp(1rem, 1.14vw, 1.3rem);
  line-height: 1.4;
}

.onboarding-steps p {
  margin: 0.7em 0 0;
  color: #5e5e5b;
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  line-height: 1.65;
}

.onboarding-steps li:last-child p {
  color: #d5d5d2;
}

.slide-final {
  display: grid;
  grid-template-columns: 54% 46%;
  color: #f8f8f6;
  background: #171717;
}

.final-copy {
  display: flex;
  flex-direction: column;
  padding: 10% 9%;
}

.final-copy .section-label,
.final-copy .section-label span {
  color: #d4d4d1;
}

.final-lead {
  margin: 1.7em 0 0;
  color: #d8d8d5;
  font-size: clamp(0.88rem, 0.98vw, 1.08rem);
  line-height: 1.75;
}

.final-request {
  margin-top: 1.8em;
  padding: 1.3em 1.4em;
  color: #171717;
  background: #f8f8f6;
}

.final-request strong {
  display: block;
  margin-top: 0.65em;
  font-size: clamp(1rem, 1.14vw, 1.3rem);
  line-height: 1.45;
}

.final-request p {
  margin: 0.65em 0 0;
  color: #5f5f5c;
  font-size: clamp(0.8rem, 0.88vw, 0.96rem);
  line-height: 1.65;
}

.final-copy .draft-free {
  color: #f8f8f6;
}

.final-copy .contact-link {
  color: #f8f8f6;
  border-top-color: #535350;
  font-family: inherit;
  font-weight: 700;
}

.final-copy .contact-link:hover,
.final-copy .contact-link:focus-visible {
  color: #ffffff;
}

.final-visual {
  display: grid;
  grid-template-rows: 58% 42%;
  min-width: 0;
  padding: 8%;
  color: #171717;
  background: #eeeeec;
}

.final-visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.final-deliverables {
  padding: 7% 7% 6%;
  background: #f8f8f6;
}

.final-deliverables ul {
  display: grid;
  gap: 0.55em;
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
}

.final-deliverables li {
  display: grid;
  grid-template-columns: 0.7em 1fr;
  gap: 0.6em;
  font-size: clamp(0.8rem, 0.88vw, 0.96rem);
  font-weight: 700;
  line-height: 1.5;
}

.final-deliverables li::before {
  content: "→";
}

@media (max-width: 720px) {
  html {
    scroll-snap-type: none;
  }

  .deck-toolbar {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    min-height: 58px;
    padding: 10px 16px;
    transform: none;
    background: rgba(247, 245, 241, 0.9);
    border-bottom: 1px solid rgba(42, 41, 38, 0.08);
    backdrop-filter: blur(16px);
  }

  .toolbar-actions {
    gap: 10px;
  }

  .page-nav {
    display: none;
  }

  .pdf-download {
    min-height: 36px;
    padding: 0 13px;
    box-shadow: none;
    font-size: 0.7rem;
  }

  .slide-shell {
    min-height: auto;
    display: block;
    padding: 0;
  }

  .slide {
    width: 100%;
    min-height: calc(100svh - 58px);
    aspect-ratio: auto;
    overflow: visible;
    box-shadow: none;
  }

  .modern-cover,
  .modern-challenge {
    min-height: max(calc(100svh - 58px), 42rem);
    overflow: hidden;
  }

  .modern-topline {
    top: 3.2rem;
    right: 7vw;
    left: 7vw;
    font-size: 0.56rem;
  }

  .modern-topline span:nth-child(2) {
    display: none;
  }

  .modern-topline {
    grid-template-columns: 1fr 1fr;
  }

  .modern-cover-copy {
    top: 7.4rem;
    left: 7vw;
    width: 86vw;
  }

  .modern-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.66rem;
  }

  .modern-cover-copy h1 {
    font-size: clamp(2.18rem, 10vw, 3.2rem);
    line-height: 1.1;
  }

  .modern-cover-copy > p:last-child {
    margin-top: 1.6rem;
    font-size: 0.9rem;
  }

  .modern-cover-visual {
    top: 23.5rem;
    right: 7vw;
    width: 43vw;
    height: 15rem;
  }

  .modern-cover-visual figcaption {
    font-size: 0.52rem;
  }

  .modern-cover-visual img {
    right: -24%;
    bottom: -8%;
    width: 130%;
  }

  .modern-orb {
    width: 3.7rem;
  }

  .modern-cover-steps {
    right: 7vw;
    bottom: 2.5rem;
    left: 7vw;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .modern-cover-steps div {
    min-height: 0;
    grid-template-columns: 2rem 4.2rem 1fr;
    align-items: center;
    padding: 0.8rem 1rem;
  }

  .modern-cover-steps strong {
    margin: 0;
    font-size: 0.88rem;
  }

  .modern-cover-steps span {
    margin: 0;
    font-size: 0.68rem;
  }

  .challenge-copy {
    top: 7.4rem;
    left: 7vw;
    width: 86vw;
  }

  .challenge-copy h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .challenge-copy > p:last-child {
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }

  .challenge-cards {
    top: 25.5rem;
    right: 7vw;
    width: 86vw;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .challenge-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 2rem 4.6rem 1fr;
    align-items: center;
    padding: 0.85rem 1rem;
  }

  .challenge-card h3 {
    margin: 0;
    font-size: 0.94rem;
  }

  .challenge-card p {
    margin: 0;
    font-size: 0.72rem;
  }

  .challenge-statement {
    right: 7vw;
    bottom: 2.7rem;
    left: 7vw;
    padding-top: 1rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .slide-cover {
    display: flex;
    flex-direction: column;
  }

  .cover-copy {
    min-height: 66svh;
    padding: 15vw 8vw 10vw;
  }

  .eyebrow {
    margin-bottom: 12vw;
    font-size: 0.72rem;
  }

  .cover-copy h1 {
    font-size: clamp(1.85rem, 8vw, 3rem);
    line-height: 1.47;
  }

  .cover-lead {
    margin-top: 9vw;
    font-size: 1rem;
    line-height: 1.95;
  }

  .cover-benefits {
    gap: 1.2vw;
    margin-top: 8vw;
  }

  .cover-benefits article {
    min-height: 4.9rem;
    padding: 0.6rem 0.45rem;
  }

  .cover-benefits strong {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .price-note {
    margin-top: auto;
    padding-top: 10vw;
    font-size: 0.78rem;
    line-height: 1.8;
  }

  .cover-image {
    height: 58svh;
  }

  .cover-image img {
    object-position: center 62%;
  }

  .page-number {
    display: none;
  }

  .slide-role {
    display: flex;
    flex-direction: column;
    padding: 18vw 8vw 14vw;
  }

  .slide-problem,
  .slide-solution {
    display: block;
    min-height: auto;
    padding: 18vw 8vw 14vw;
  }

  .slide-problem .role-copy,
  .slide-solution .media-copy {
    display: block;
    width: auto;
  }

  .slide-problem .role-copy h2,
  .slide-solution .media-copy h2 {
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.18;
  }

  .slide-problem .role-lead,
  .slide-solution .media-lead {
    margin-top: 8vw;
    font-size: 1rem;
    line-height: 1.85;
  }

  .problem-note,
  .solution-note {
    position: static;
    width: auto;
    margin: 12vw 0 0;
    font-size: 1.25rem;
  }

  .problem-blocks,
  .solution-blocks {
    position: static;
    grid-template-columns: 1fr;
    gap: 2.4vw;
    margin-top: 12vw;
  }

  .problem-blocks article,
  .solution-blocks article {
    min-height: 7.4rem;
    padding: 1.1rem;
  }

  .problem-blocks span,
  .solution-blocks span {
    font-size: 0.78rem;
  }

  .problem-blocks strong,
  .solution-blocks strong {
    margin-top: auto;
    font-size: 1rem;
  }

  .problem-blocks p,
  .solution-blocks p {
    font-size: 0.88rem;
  }

  .story-slide {
    display: block;
    min-height: auto;
    padding: 10vw 4vw 9vw;
  }

  .story-header {
    width: auto;
  }

  .story-header .section-label {
    margin-bottom: 5vw;
  }

  .story-header h2 {
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.18;
  }

  .story-header > p:last-child {
    margin-top: 5vw;
    font-size: 1rem;
    line-height: 1.85;
  }

  .story-panel {
    margin-top: 8vw;
  }

  .post-life-panel,
  .search-gap-panel,
  .archive-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .post-life-panel {
    grid-template-rows: auto;
  }

  .post-life-track {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .post-life-step {
    min-height: 10.5rem;
  }

  .post-life-step {
    grid-template-rows: 11rem 1fr;
  }

  .post-life-step-copy {
    padding: 1.2rem;
  }

  .post-life-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .post-life-step p {
    font-size: 0.88rem;
  }

  .post-life-track .post-life-step span {
    font-size: 0.78rem;
  }

  .post-life-track .post-life-step strong {
    font-size: 1.12rem;
  }

  .post-life-flow {
    grid-template-columns: 1fr;
    gap: 2.4vw;
    padding: 3vw;
  }

  .post-life-flow article {
    min-height: 8.5rem;
    padding: 1.2rem;
  }

  .panel-conclusion {
    grid-column: auto;
    padding: 1.2rem;
    font-size: 1rem;
  }

  .search-gap-panel {
    gap: 3vw;
    padding: 3vw;
  }

  .search-intent {
    min-height: 19rem;
    padding: 1.3rem;
  }

  .search-intent h3 {
    font-size: 1.3rem;
  }

  .search-intent li {
    font-size: 0.92rem;
  }

  .discovery-card {
    grid-template-columns: 1fr;
  }

  .discovery-card img {
    height: 13rem;
  }

  .discovery-card div {
    min-height: 16rem;
    padding: 1.3rem;
  }

  .discovery-card h3 {
    font-size: 1.35rem;
  }

  .archive-panel {
    gap: 0;
    padding: 3vw;
  }

  .archive-step {
    min-height: 14rem;
    padding: 1.3rem;
  }

  .archive-post {
    padding: 0;
  }

  .archive-post div {
    padding: 1.2rem 1.3rem;
  }

  .archive-arrow {
    justify-self: center;
    padding: 0.3rem 0;
    transform: rotate(90deg);
  }

  .service-proposal-panel {
    grid-template-columns: 1fr;
  }

  .service-proposal-copy {
    min-height: 31rem;
    padding: 1.5rem;
  }

  .service-proposal-copy h3 {
    font-size: 1.45rem;
  }

  .service-proposal-copy > p,
  .service-proposal-copy li {
    font-size: 0.92rem;
  }

  .service-proposal-photo {
    height: 19rem;
  }

  .story-customer-flow {
    display: block;
  }

  .flow-story-header {
    display: block;
  }

  .flow-story-header .section-label {
    margin-bottom: 7vw;
  }

  .flow-story-header > p:last-child {
    margin-top: 7vw;
  }

  .big-flow-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 3vw;
  }

  .big-flow-step {
    min-height: 16rem;
    padding: 1.35rem;
  }

  .big-flow-step h3 {
    font-size: 1.35rem;
  }

  .big-flow-step p,
  .big-flow-step li {
    font-size: 0.92rem;
  }

  .flow-instagram {
    min-height: 28rem;
    padding: 0;
  }

  .flow-instagram img {
    height: 15rem;
  }

  .flow-instagram div {
    padding: 1.35rem;
  }

  .big-flow-arrow {
    justify-self: center;
    padding: 0.35rem 0;
    transform: rotate(90deg);
  }

  .flow-outcome {
    margin-top: 3vw;
    padding: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
  }

  .role-copy {
    display: contents;
  }

  .section-label {
    order: 1;
    margin-bottom: 7vw;
    font-size: 0.78rem;
  }

  .role-copy h2 {
    order: 2;
    font-size: clamp(1.58rem, 6.7vw, 2.3rem);
    line-height: 1.58;
  }

  .role-lead {
    order: 3;
    margin-top: 8vw;
    font-size: 1rem;
    line-height: 1.9;
  }

  .role-visual {
    order: 4;
    width: calc(100% + 6vw);
    margin: 13vw -3vw 0;
  }

  .role-visual figcaption {
    margin-top: 4vw;
    font-size: 0.76rem;
  }

  .role-points {
    order: 5;
    gap: 9vw;
    margin-top: 14vw;
  }

  .role-points li {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.5rem;
  }

  .point-number {
    font-size: 0.92rem;
  }

  .role-points h3 {
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .role-points p {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .slide-media,
  .slide-seo,
  .slide-options,
  .slide-after {
    display: flex;
    flex-direction: column;
    padding: 18vw 8vw 14vw;
  }

  .media-copy,
  .seo-copy,
  .after-copy,
  .options-copy {
    padding: 0;
  }

  .role-copy h2,
  .media-copy h2,
  .seo-copy h2,
  .contents-header h2,
  .pricing-header h2,
  .options-copy h2,
  .after-copy h2 {
    font-size: clamp(1.4rem, 5.75vw, 2rem);
    line-height: 1.58;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .mobile-only {
    display: inline;
  }

  .media-lead,
  .seo-lead,
  .contents-header > p,
  .pricing-header > p,
  .options-copy > p,
  .after-lead {
    font-size: 1rem;
    line-height: 1.9;
  }

  .media-lead,
  .after-lead {
    margin-top: 8vw;
  }

  .seo-lead {
    margin-top: 8vw;
  }

  .seo-statement {
    margin-top: 11vw;
    padding-top: 7vw;
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .seo-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 14vw;
    padding: 0;
    border-bottom: 0;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    column-gap: 0.8rem;
    padding: 7vw 0;
    border-bottom: 1px solid #d7d1c7;
  }

  .flow-step:not(:last-of-type)::after,
  .flow-step:not(:last-of-type)::before {
    display: none;
  }

  .flow-number {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 0.95rem;
  }

  .flow-step h3 {
    font-size: 1.02rem;
  }

  .flow-step > p:last-child {
    margin-top: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .seo-flow-note {
    position: static;
    margin: 7vw 0 0;
    padding-bottom: 2vw;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
  }

  .media-points {
    gap: 5vw;
    margin-top: 11vw;
    font-size: 0.93rem;
    line-height: 1.8;
  }

  .media-points li {
    grid-template-columns: 0.75rem 1fr;
    gap: 0.7rem;
  }

  .media-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.05;
    margin: 14vw 0 0;
  }

  .slide-contents,
  .slide-pricing {
    padding: 18vw 8vw 14vw;
  }

  .contents-header,
  .pricing-header {
    display: block;
  }

  .contents-header .section-label,
  .pricing-header .section-label {
    margin-bottom: 7vw;
  }

  .contents-header > p,
  .pricing-header > p,
  .pricing-summary {
    margin: 8vw 0 0;
  }

  .pricing-summary ul {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.2rem;
    font-size: 0.9rem;
  }

  .content-features {
    grid-template-columns: 1fr;
    gap: 13vw;
    margin-top: 14vw;
  }

  .content-feature img {
    aspect-ratio: 1.2 / 1;
  }

  .content-feature h3 {
    margin-top: 1.1rem;
    font-size: 1.12rem;
  }

  .content-feature p,
  .contents-note {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .content-feature .feature-note {
    font-size: 0.78rem;
  }

  .contents-note {
    margin-top: 14vw;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 5vw;
    margin-top: 13vw;
  }

  .pricing-plan {
    min-height: 0;
    padding: 8vw;
  }

  .plan-name {
    font-size: 1rem;
  }

  .plan-price {
    margin: 8vw 0 6vw;
    padding-bottom: 6vw;
    font-size: 2rem;
  }

  .pricing-plan ul {
    gap: 0.85rem;
    font-size: 0.92rem;
  }

  .campaign-note {
    margin-top: 8vw;
    font-size: 0.88rem;
    line-height: 1.8;
    text-align: left;
  }

  .options-copy > p {
    margin-top: 8vw;
  }

  .options-copy .section-label {
    order: -1;
  }

  .options-table-wrap {
    margin-top: 12vw;
    padding: 8vw 6vw;
  }

  .options-table-wrap h3 {
    margin-bottom: 7vw;
    font-size: 1rem;
  }

  .options-table {
    grid-template-columns: 1fr;
  }

  .options-table div {
    min-height: 0;
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    font-size: 0.83rem;
    line-height: 1.55;
  }

  .pr-detail,
  .options-footnote {
    font-size: 0.79rem;
    line-height: 1.7;
  }

  .pr-detail {
    margin-top: 7vw;
  }

  .options-footnote {
    margin-top: 4vw;
  }

  .draft-list {
    align-self: stretch;
    margin-top: 12vw;
  }

  .draft-list li {
    padding: 5vw 0;
  }

  .draft-list h3 {
    font-size: 0.98rem;
  }

  .draft-list p {
    margin-top: 0.7rem;
    font-size: 0.89rem;
    line-height: 1.8;
  }

  .draft-free {
    margin-top: 8vw;
    font-size: 0.96rem;
  }

  .contact-link {
    margin-top: 10vw;
    padding-top: 6vw;
    font-size: 1.1rem;
  }

  .slide-benefits,
  .slide-included,
  .slide-onboarding {
    display: block;
    padding: 18vw 8vw 14vw;
  }

  .benefits-header,
  .included-header,
  .onboarding-header {
    display: block;
  }

  .benefits-header .section-label,
  .included-header .section-label,
  .onboarding-header .section-label {
    margin-bottom: 7vw;
  }

  .benefits-header h2,
  .included-header h2,
  .onboarding-header h2,
  .final-copy h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
    line-height: 1.35;
  }

  .benefits-header > p,
  .included-header > p,
  .onboarding-header > p {
    margin-top: 7vw;
    font-size: 1rem;
    line-height: 1.85;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 3vw;
    margin-top: 12vw;
  }

  .benefit-grid article {
    min-height: 16rem;
    padding: 1.5rem;
  }

  .benefit-grid strong {
    font-size: 1.5rem;
  }

  .benefit-grid p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .benefit-summary {
    margin-top: 4vw;
    padding: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  .included-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3vw;
    margin-top: 12vw;
  }

  .included-grid article {
    min-height: 0;
    padding: 1.4rem;
  }

  .included-grid h3 {
    font-size: 1.18rem;
  }

  .included-grid p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .compact-pricing-header {
    display: block;
  }

  .compact-pricing-header > p {
    margin-top: 7vw;
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .pricing-with-images .pricing-plans {
    gap: 6vw;
    margin-top: 12vw;
  }

  .pricing-with-images .pricing-plan {
    padding: 0;
  }

  .pricing-with-images .plan-image {
    top: 1.2rem;
    right: 1.2rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  .plan-content {
    padding: 1.4rem;
  }

  .pricing-with-images .plan-price {
    margin-top: 0.5rem;
    padding-bottom: 0.6rem;
  }

  .plan-for {
    min-height: 0;
    font-size: 0.92rem;
  }

  .pricing-with-images .pricing-plan ul {
    font-size: 0.92rem;
  }

  .plan-campaign {
    margin-top: 1.2rem;
    font-size: 0.92rem;
  }

  .pricing-tax {
    margin-top: 5vw;
    font-size: 0.84rem;
    text-align: left;
  }

  .options-tax {
    margin-top: 8vw !important;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3vw;
    margin-top: 12vw;
  }

  .onboarding-steps li {
    grid-template-columns: 2.4rem 1fr;
    padding: 1.4rem;
  }

  .onboarding-steps h3 {
    font-size: 1.12rem;
  }

  .onboarding-steps p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .slide-final {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .final-copy {
    min-height: calc(100svh - 58px);
    padding: 18vw 8vw 14vw;
  }

  .final-lead {
    margin-top: 8vw;
    font-size: 1rem;
    line-height: 1.85;
  }

  .final-request {
    margin-top: 9vw;
    padding: 1.3rem;
  }

  .final-request strong {
    font-size: 1.12rem;
  }

  .final-request p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .final-copy .draft-free {
    margin-top: 8vw;
  }

  .final-visual {
    display: block;
    padding: 10vw 8vw 14vw;
  }

  .final-visual > img {
    height: auto;
    min-height: 17rem;
  }

  /* Keep the full mobile deck aligned to a consistent 4vw page gutter. */
  .slide-role,
  .slide-problem,
  .slide-solution,
  .slide-media,
  .slide-seo,
  .slide-options,
  .slide-after,
  .slide-contents,
  .slide-pricing,
  .story-slide,
  .slide-benefits,
  .slide-included,
  .slide-onboarding {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .cover-copy,
  .final-copy,
  .final-visual {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .final-deliverables {
    margin-top: 6vw;
    padding: 1.4rem;
  }

  .final-deliverables li {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .desktop-only {
    display: none;
  }
}

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

  .page-dot {
    transition: none;
  }
}

@media print {
  @page {
    size: 13.333333in 7.5in;
    margin: 0;
  }

  html,
  body {
    width: 13.333333in;
    margin: 0;
    background: var(--paper);
    scroll-snap-type: none;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .deck-toolbar {
    display: none;
  }

  .slide-shell {
    display: block;
    width: 13.333333in;
    height: 7.5in;
    min-height: 0;
    padding: 0;
    break-after: page;
    page-break-after: always;
  }

  .slide-shell:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .slide {
    width: 13.333333in;
    height: 7.5in;
    aspect-ratio: auto;
    box-shadow: none;
  }
}
