:root {
  --bg: #f7f2ea;
  --bg-deep: #efe7dc;
  --paper: #fffdf8;
  --paper-soft: #fbf7ef;
  --ink: #1c1d1c;
  --muted: #6f706b;
  --line: #ded7cb;
  --line-dark: #4d4f4f;
  --red: #df5748;
  --red-dark: #c94236;
  --teal: #3f8583;
  --teal-dark: #2f6f6e;
  --lime: #b9c64b;
  --black: #151617;
  --shadow: 0 18px 42px rgba(42, 35, 26, 0.08);
  --shadow-soft: 0 10px 26px rgba(42, 35, 26, 0.06);
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.035em;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 48%, #f9f5ee 100%);
  line-break: strict;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(43, 35, 25, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 35, 25, 0.014) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

main {
  overflow-x: clip;
}

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

ul,
ol,
dl,
figure {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(calc(100% - 72px), 1320px);
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 24px rgba(206, 69, 55, 0.22);
}

.button--primary:hover {
  box-shadow: 0 16px 30px rgba(206, 69, 55, 0.28);
}

.button--outline {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border-color: #8d8b84;
}

.button--outline:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.button__arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 22px;
  font-size: 20px;
  line-height: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(204, 195, 181, 0.9);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 32px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-logo__text {
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  color: #262726;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav > a:not(.header__cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.header__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.18s ease;
}

.site-nav > a:not(.header__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(206, 69, 55, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 58px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 181, 166, 0.9), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(620px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.hero__inner > * {
  min-width: 0;
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0.075em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow-wrap: anywhere;
}

.hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #4e504c;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.05;
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.hero__actions .button {
  min-width: 210px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-top: 1px solid rgba(201, 191, 176, 0.82);
  border-bottom: 1px solid rgba(201, 191, 176, 0.58);
  background: rgba(255, 253, 248, 0.25);
}

.hero-stat {
  min-height: 112px;
  padding: 16px 13px 14px;
  text-align: center;
  border-left: 1px solid rgba(201, 191, 176, 0.88);
}

.hero-stat:first-child {
  border-left: 0;
}

.hero-stat dt {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #555651;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-stat dt .icon {
  width: 31px;
  height: 31px;
  color: #7f8885;
  stroke-width: 1.45;
}

.hero-stat dd {
  margin: 5px 0 0;
  color: #111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hero__visual {
  min-width: 0;
}

.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 8px;
  min-height: 626px;
  background: rgba(14, 15, 15, 0.9);
  border: 1px solid rgba(35, 33, 29, 0.18);
  box-shadow: 0 26px 70px rgba(42, 35, 26, 0.15);
  max-width: 100%;
}

.collage__item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #191a1a;
}

.collage__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.collage__item img,
.phone-mock img,
.strength__media img,
.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage__item--camera {
  grid-column: 1 / 9;
  grid-row: 1 / 6;
}

.collage__item--editing {
  grid-column: 9 / 13;
  grid-row: 1 / 6;
}

.collage__item--thumbs {
  grid-column: 1 / 5;
  grid-row: 6 / 11;
}

.collage__item--storyboard {
  grid-column: 5 / 13;
  grid-row: 6 / 11;
}

.phone-mock {
  position: absolute;
  right: 33px;
  bottom: 38px;
  z-index: 3;
  width: 178px;
  height: 318px;
  padding: 8px;
  overflow: hidden;
  background: #0b0b0c;
  border: 3px solid #121314;
  border-radius: 28px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  transform: rotate(1.2deg);
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 48px;
  height: 6px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-mock img {
  border-radius: 20px;
  filter: saturate(0.92) contrast(1.05);
}

.phone-mock__bar {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.phone-mock__caption {
  position: absolute;
  left: 18px;
  bottom: 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.phone-mock__action {
  position: absolute;
  right: 15px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.phone-mock__action--heart {
  bottom: 112px;
  background: var(--red);
}

.phone-mock__action--comment {
  bottom: 82px;
}

.phone-mock__action--share {
  bottom: 52px;
}

.capability-strip {
  padding: 34px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--black);
  border-top: 1px solid #2b2c2c;
  border-bottom: 1px solid #2b2c2c;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 20px 14px;
  color: #f6f2e8;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.capability-card .icon {
  width: 34px;
  height: 34px;
  color: var(--lime);
  stroke-width: 1.55;
}

.capability-card__text {
  display: grid;
  gap: 4px;
  justify-items: center;
  line-height: 1.25;
}

.capability-card__jp {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.capability-card__en {
  color: rgba(246, 242, 232, 0.68);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 74px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading::before,
.section-heading::after {
  content: "";
  width: 82px;
  height: 1px;
  background: #aeb0aa;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.section-heading--compact {
  margin-bottom: 26px;
}

.problems {
  padding-bottom: 48px;
}

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

.problem-card {
  position: relative;
  min-height: 228px;
  padding: 34px 34px 30px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(221, 214, 203, 0.96);
  border-radius: 5px;
  box-shadow: var(--shadow-soft);
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 42%);
}

.problem-card__icon {
  position: relative;
  float: left;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 20px 16px 0;
  color: #6c7472;
  background: #f7f3eb;
  border: 1px solid #e3ddd2;
  border-radius: 50%;
}

.problem-card__icon .icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.35;
}

.problem-card h3 {
  position: relative;
  min-height: 70px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.72;
  letter-spacing: 0.04em;
}

.problem-card p {
  position: relative;
  clear: both;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

.strength {
  padding: 20px 0 72px;
}

.strength__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 0;
}

.strength__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.strength__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22)), linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44));
}

.strength__copy {
  position: absolute;
  left: clamp(32px, 4vw, 54px);
  top: 62px;
  z-index: 2;
  max-width: 430px;
  color: #fff;
}

.strength__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.strength__copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 20px 0 24px;
  background: var(--lime);
}

.strength__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  line-height: 2.1;
}

.strength__list {
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.strength-card {
  display: grid;
  grid-template-columns: 70px 62px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 134px;
  padding: 22px 28px 22px 0;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(221, 214, 203, 0.96);
  border-radius: 5px;
  box-shadow: var(--shadow-soft);
}

.strength-card__number {
  justify-self: start;
  display: inline-grid;
  place-items: center;
  min-width: 66px;
  height: 42px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--teal);
  border-radius: 0 999px 999px 0;
}

.strength-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--teal);
}

.strength-card__icon .icon {
  width: 50px;
  height: 50px;
  stroke-width: 1.25;
}

.strength-card h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

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

.menu {
  padding-top: 42px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(221, 214, 203, 0.96);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.menu-card__image {
  height: 148px;
  overflow: hidden;
  background: #1a1b1c;
}

.menu-card__body {
  position: relative;
  min-height: 184px;
  padding: 46px 30px 28px;
  text-align: center;
}

.menu-card__icon {
  position: absolute;
  top: -34px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #7f8582;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid #e3ddd2;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(42, 35, 26, 0.08);
  transform: translateX(-50%);
}

.menu-card__icon .icon {
  width: 40px;
  height: 40px;
  stroke-width: 1.4;
}

.menu-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.menu-card p {
  max-width: 320px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

.menu-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #444;
  font-size: 24px;
  line-height: 1;
}

.use {
  padding-top: 34px;
  padding-bottom: 36px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
  max-width: 1190px;
  margin-inline: auto;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 38px;
  padding: 6px 20px;
  color: #63645f;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid #cfc7b9;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.flow {
  padding-top: 42px;
  padding-bottom: 62px;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
}

.flow-list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: #b9bcb6;
}

.flow-step {
  position: relative;
  min-height: 190px;
  padding: 0 22px;
  text-align: center;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  bottom: 0;
  border-right: 1px dashed #c4bdae;
}

.flow-step__number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--bg);
}

.flow-step > .icon {
  width: 52px;
  height: 52px;
  color: #7b817e;
  stroke-width: 1.25;
}

.flow-step h3 {
  margin: 10px 0 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.75;
}

.price {
  position: relative;
  padding-top: 48px;
  padding-bottom: 58px;
}

.price-note {
  max-width: 1110px;
  margin: -12px auto 14px;
  color: #767872;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  max-width: 1110px;
  margin-inline: auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 424px;
  padding: 42px 34px 28px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(218, 211, 199, 0.98);
  box-shadow: var(--shadow-soft);
}

.plan-card + .plan-card {
  margin-left: -1px;
}

.plan-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.plan-card__price {
  margin: 10px 0 4px;
  font-family: Georgia, "Times New Roman", var(--serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.05em;
}

.plan-card__lead {
  min-height: 56px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.plan-card__features {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  color: #575955;
  font-size: 12px;
  font-weight: 700;
}

.plan-card__features li {
  position: relative;
  padding-left: 22px;
}

.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border: 2px solid #89928f;
  border-radius: 50%;
}

.plan-card__button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.plan-card--featured {
  z-index: 2;
  border-color: rgba(223, 87, 72, 0.78);
  box-shadow: 0 16px 38px rgba(206, 69, 55, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  height: 30px;
  margin: 0;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.plan-card--featured h3 {
  margin-top: 20px;
}

.faq {
  padding: 2px 0 52px;
}

.faq .section-heading {
  margin-bottom: 20px;
}

.faq-list {
  max-width: 1220px;
  margin-inline: auto;
  border-top: 1px solid #d8d0c4;
}

.faq-item {
  background: rgba(255, 253, 248, 0.76);
  border-bottom: 1px solid #d8d0c4;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 58px 0 20px;
  color: #333432;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.faq-item summary::after {
  content: "⌄";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #575955;
  font-size: 22px;
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: -4px 58px 22px 70px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 10, 11, 0.94) 0%, rgba(9, 10, 11, 0.82) 42%, rgba(9, 10, 11, 0.38) 100%),
    url("images/placeholder-final-cta.jpg") center / cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 260px;
  padding: 46px 0;
}

.final-cta__content {
  max-width: 780px;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.42;
  letter-spacing: 0.12em;
}

.final-cta p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 48px), 1060px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero__content {
    max-width: 800px;
  }

  .hero__lead {
    max-width: 650px;
  }

  .collage {
    min-height: 580px;
  }

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

  .problem-card {
    padding: 30px 26px;
  }

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

  .strength__list {
    padding: 20px 0 0;
  }

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

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }

  .flow-list::before {
    display: none;
  }

  .flow-step:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 14px;
  }

  .header__inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 0;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(42px, 10vw, 58px);
  }

  .hero__lead {
    font-size: 15px;
  }

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

  .hero-stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(201, 191, 176, 0.88);
  }

  .hero-stat:nth-child(4) {
    border-top: 1px solid rgba(201, 191, 176, 0.88);
  }

  .collage {
    min-height: 480px;
    gap: 6px;
  }

  .phone-mock {
    right: 18px;
    bottom: 24px;
    width: 138px;
    height: 246px;
    border-radius: 22px;
  }

  .problem-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plan-card + .plan-card {
    margin-left: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading::before,
  .section-heading::after {
    width: 48px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .strength-card {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 24px 22px 24px 0;
  }

  .strength-card__icon {
    display: none;
  }

  .tag-list {
    justify-content: flex-start;
  }

  .tag-list li {
    min-width: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-logo {
    font-size: 20px;
  }

  .site-logo__mark {
    width: 30px;
    height: 30px;
  }

  .site-nav > a:not(.header__cta) {
    display: none;
  }

  .header__cta {
    min-height: 40px;
    padding: 0 18px;
  }

  .hero {
    padding: 42px 0 44px;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.22;
    letter-spacing: 0.04em;
  }

  .hero__lead br {
    display: none;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__actions {
    display: grid;
    gap: 14px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-stat {
    min-height: 104px;
    padding-inline: 8px;
  }

  .hero-stat dd {
    font-size: 15px;
  }

  .collage {
    min-height: 390px;
    width: 100%;
  }

  .collage__item--camera {
    grid-column: 1 / 13;
    grid-row: 1 / 5;
  }

  .collage__item--editing {
    grid-column: 1 / 6;
    grid-row: 5 / 8;
  }

  .collage__item--thumbs {
    grid-column: 1 / 6;
    grid-row: 8 / 11;
  }

  .collage__item--storyboard {
    grid-column: 6 / 13;
    grid-row: 5 / 11;
  }

  .phone-mock {
    right: 12px;
    bottom: 16px;
    width: 110px;
    height: 198px;
    padding: 6px;
  }

  .phone-mock__caption,
  .phone-mock__action {
    display: none;
  }

  .capability-strip {
    padding: 24px 0;
  }

  .capability-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .capability-card {
    min-height: 118px;
    padding: 18px 10px;
    gap: 10px;
  }

  .capability-card .icon {
    width: 30px;
    height: 30px;
  }

  .capability-card__jp {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .capability-card__en {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .problem-card__icon {
    float: none;
    margin: 0 0 16px;
  }

  .problem-card h3 {
    min-height: auto;
  }

  .strength {
    padding-bottom: 50px;
  }

  .strength__media {
    min-height: 380px;
  }

  .strength__copy {
    left: 24px;
    right: 24px;
    top: 48px;
  }

  .strength__copy h2 {
    font-size: 31px;
  }

  .strength-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .strength-card__number {
    min-width: 54px;
    height: 36px;
    font-size: 17px;
  }

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

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

  .menu-card__image {
    height: 138px;
  }

  .tag-list {
    gap: 10px;
  }

  .tag-list li {
    min-height: 34px;
    padding: 5px 14px;
    font-size: 12px;
  }

  .flow-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 14px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 40px 54px minmax(0, 1fr);
    column-gap: 14px;
    min-height: auto;
    padding: 18px 0;
    text-align: left;
    border-bottom: 1px dashed #c4bdae;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .flow-step__number {
    grid-row: 1 / 3;
    margin: 7px 0 0;
    box-shadow: none;
  }

  .flow-step > .icon {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    margin-top: 4px;
  }

  .flow-step h3 {
    margin: 0 0 3px;
  }

  .flow-step p {
    grid-column: 3 / 4;
    font-size: 12px;
  }

  .price-note {
    text-align: left;
  }

  .plan-card {
    min-height: auto;
    padding: 38px 24px 24px;
  }

  .plan-card__price {
    font-size: 34px;
  }

  .faq-item summary {
    align-items: flex-start;
    min-height: 60px;
    padding: 14px 46px 14px 12px;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .faq-item summary span {
    width: 28px;
    height: 28px;
  }

  .faq-item p {
    margin: -2px 24px 18px 52px;
    font-size: 12px;
  }

  .final-cta {
    background-position: 64% center;
  }

  .final-cta__inner {
    min-height: 320px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .final-cta p br {
    display: none;
  }
}
