:root {
  --ink: #352f2b;
  --ink-soft: #665d57;
  --peach: #e89172;
  --peach-deep: #c96549;
  --peach-soft: #f7d8c9;
  --orange-soft: #f3b471;
  --cream: #fff7ed;
  --cream-deep: #f6ebdc;
  --paper: #fffdf9;
  --white: #ffffff;
  --green: #168a52;
  --green-deep: #0d6f40;
  --line: #e6d8ca;
  --shadow: 0 12px 30px rgba(87, 58, 40, 0.1);
  --shell: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.35;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 28px;
  font-size: 3.15rem;
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
}

:focus-visible {
  outline: 3px solid #1268a3;
  outline-offset: 3px;
}

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

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

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section-cream {
  background: var(--cream);
}

.section-peach {
  background: #fbe6da;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--peach-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(93, 67, 50, 0.1);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--shell), calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #e4a987;
  border-radius: 50%;
  color: var(--peach-deep);
  background: var(--cream);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--peach-deep);
  color: var(--peach-deep);
  background: var(--white);
  font-size: 0.84rem;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: min(760px, 76svh);
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background: #f7eee3;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 60%;
  background: rgba(255, 253, 249, 0.78);
}

.hero-content {
  align-self: center;
  padding-block: 64px 72px;
}

.seasonal-kicker {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--peach-deep);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 5.4rem;
  font-weight: 850;
  line-height: 1.08;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 30px;
  color: #4e453f;
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}

.button {
  padding: 14px 24px;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(117, 64, 39, 0.14);
}

.button-primary {
  color: var(--white);
  background: var(--peach-deep);
}

.button-primary:hover {
  background: #b8543c;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-note::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 30px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.step-list {
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(150px, 210px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: 250px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  align-self: start;
  padding-top: 8px;
  color: var(--peach-deep);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.step-visual {
  position: relative;
  width: 180px;
  height: 160px;
  margin-inline: auto;
}

.phone-shape {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 78px;
  height: 140px;
  border: 5px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  transform: rotate(-7deg);
}

.phone-shape i {
  position: absolute;
  right: 18px;
  bottom: 13px;
  left: 18px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
}

.qr-shape {
  position: absolute;
  right: 8px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  border: 8px solid var(--paper);
  box-shadow: 0 0 0 3px var(--peach-deep), var(--shadow);
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, var(--paper) 25%, transparent 25%, transparent 50%, var(--paper) 50%, var(--paper) 75%, transparent 75%),
    linear-gradient(var(--paper) 25%, transparent 25%, transparent 50%, var(--paper) 50%, var(--paper) 75%, transparent 75%);
  background-size: 22px 22px;
}

.seat-shape {
  position: absolute;
  right: 12px;
  bottom: 22px;
  width: 118px;
  height: 70px;
  border: 5px solid var(--ink);
  border-top: 0;
}

.seat-shape::before,
.seat-shape::after {
  position: absolute;
  bottom: -28px;
  width: 5px;
  height: 28px;
  background: var(--ink);
  content: "";
}

.seat-shape::before { left: 12px; }
.seat-shape::after { right: 12px; }

.sun-shape {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 68px;
  height: 68px;
  border: 5px solid var(--orange-soft);
  border-radius: 50%;
  background: #ffd89a;
}

.message-shape {
  position: absolute;
  top: 22px;
  left: 8px;
  width: 128px;
  height: 88px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.message-shape::before,
.message-shape::after {
  position: absolute;
  left: 23px;
  width: 74px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}

.message-shape::before { top: 26px; }
.message-shape::after { top: 49px; width: 50px; }

.bell-shape {
  position: absolute;
  right: 5px;
  bottom: 10px;
  width: 64px;
  height: 64px;
  border: 5px solid var(--peach-deep);
  border-radius: 50% 50% 44% 44%;
  background: var(--cream);
}

.step-label {
  margin-bottom: 6px;
  color: var(--peach-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-copy h3 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.step-copy p:last-child {
  margin-bottom: 0;
}

.important-note {
  display: inline-block;
  margin-top: 4px;
  color: var(--peach-deep);
  font-size: 0.88rem;
  font-weight: 800;
}


.screen-flow-heading {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.screen-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.screen-step {
  min-width: 0;
}

.screen-step-wide,
.wait-note {
  grid-column: 1 / -1;
}

.screen-copy {
  margin-bottom: 18px;
}

.screen-number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--peach-deep);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.screen-copy h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.screen-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.screen-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(107, 82, 66, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(87, 58, 40, 0.12);
}

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

.phone-frame {
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 1290 / 2796;
}

.ipad-frame {
  aspect-ratio: 2160 / 1620;
}

.wait-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0 2px;
  color: var(--peach-deep);
  font-weight: 850;
  text-align: center;
}

.wait-note span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.wait-note p {
  margin: 0;
}

.screen-step-wide {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-top: -8px;
}

.screen-step-wide .screen-copy {
  margin-bottom: 0;
}

.screen-step-wide + .screen-step-phone {
  grid-column: 2 / 3;
  margin-top: -4px;
}

.maker {
  color: #fffaf4;
  background: #6f5043;
}

.maker .eyebrow {
  color: #ffd5c0;
}

.maker-layout {
  display: grid;
  grid-template-columns: minmax(820px, 1fr) minmax(320px, 0.64fr);
  gap: clamp(30px, 4vw, 64px);
}

.maker-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.maker-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(1.95rem, 2.15vw, 2.25rem);
}

.title-mobile {
  display: none;
}

.title-desktop {
  display: inline;
  word-break: keep-all;
  line-break: strict;
}

.title-keep {
  display: inline-block;
  white-space: nowrap;
}

.hand-line {
  display: block;
  width: 120px;
  height: 5px;
  background: var(--peach);
  transform: rotate(-2deg);
}

.maker-story {
  color: #f8eee7;
  font-size: 1.05rem;
}

.maker-story p {
  margin-bottom: 24px;
}

.maker-lead {
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 850;
}

.maker-quote {
  padding: 22px 0 22px 28px;
  border-left: 4px solid var(--peach);
  color: var(--white);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-summary {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

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

.compact-section h2 {
  max-width: 900px;
}

.intro-copy-large {
  max-width: 580px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.75;
}

.screen-flow-summary {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(201, 101, 73, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--peach-deep);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(87, 58, 40, 0.08);
}

.maker-story-compact {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.maker-story-compact p {
  margin-bottom: 18px;
}

.maker-story-compact .maker-quote {
  margin-top: 28px;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mini-feature {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-feature span {
  display: block;
  margin-bottom: 30px;
  color: var(--peach-deep);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
}

.mini-feature h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.mini-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.monitor-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 70px);
  border: 2px solid var(--peach-deep);
  border-radius: 8px;
  background: #fffaf6;
  box-shadow: var(--shadow);
}

.monitor-hero-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(42%, 360px);
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 145, 114, 0.2), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.monitor-hero-card > * {
  position: relative;
}

.monitor-hero-card h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1.02;
}

.monitor-hero-card h2 em {
  color: var(--peach-deep);
  font-style: normal;
}

.monitor-short-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
}

.monitor-price-comparison {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}

.compare-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-card-monitor {
  border-color: var(--peach-deep);
  background: #fff7f1;
}

.compare-label {
  margin-bottom: 18px;
  color: var(--peach-deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.compare-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.compare-list > div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.compare-list dt,
.compare-term {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.compare-list dd {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 850;
  line-height: 1.18;
}

.compare-list small,
.compare-change-row small {
  margin-left: 2px;
  font-size: 0.42em;
}

.compare-list dd span {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.compare-change-list {
  display: grid;
  gap: 12px;
}

.compare-change-row {
  display: grid;
  grid-template-columns: minmax(76px, 1fr) max-content 20px max-content;
  gap: 9px;
  align-items: baseline;
  padding: 14px;
  border: 1px solid rgba(201, 101, 73, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.compare-change-main {
  color: var(--white);
  background: var(--peach-deep);
  border-color: var(--peach-deep);
}

.compare-change-main .compare-term,
.compare-change-main .compare-before {
  color: #ffe9df;
}

.compare-before {
  color: var(--ink-soft);
  font-weight: 850;
  white-space: nowrap;
  text-decoration-line: line-through;
  text-decoration-color: rgba(201, 101, 73, 0.78);
  text-decoration-thickness: 0.12em;
  text-decoration-skip-ink: none;
}

.compare-change-main .compare-before {
  text-decoration-color: rgba(255, 255, 255, 0.82);
}

.compare-arrow {
  color: var(--peach-deep);
  font-weight: 900;
  text-align: center;
}

.compare-change-main .compare-arrow {
  color: var(--white);
}

.compare-change-row strong {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
  line-height: 1.05;
}

.monitor-fineprint,
.folded-lead {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.monitor-reason {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.monitor-folds {
  margin-top: 26px;
}

.compact-details {
  display: grid;
  gap: 12px;
}

.compact-details details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.compact-details summary {
  position: relative;
  min-height: 58px;
  padding: 16px 46px 16px 18px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.compact-details summary::after {
  position: absolute;
  top: 13px;
  right: 18px;
  color: var(--peach-deep);
  font-size: 1.4rem;
  content: "+";
}

.compact-details details[open] summary::after {
  content: "−";
}

.compact-details details > :not(summary) {
  margin: 0;
  padding: 0 18px 18px;
}

.small-price-list {
  display: grid;
  gap: 8px;
}

.small-price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.small-price-list dt {
  color: var(--ink-soft);
  font-weight: 700;
}

.small-price-list dd {
  margin: 0;
  font-weight: 850;
}

.folded-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.flow-list-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-list-compact li {
  min-height: 118px;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-group {
  padding: 38px clamp(0px, 4vw, 50px) 38px 0;
}

.feature-group + .feature-group {
  padding-right: 0;
  padding-left: clamp(30px, 5vw, 64px);
  border-left: 1px solid var(--line);
}

.feature-group h3,
.setup-columns h3,
.monitor-details h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.check-list,
.plain-list,
.recommended-grid ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.recommended-grid li {
  position: relative;
  padding: 8px 0 8px 30px;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  content: "✓";
}

.plain-list li::before,
.recommended-grid li::before {
  position: absolute;
  top: 18px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
  content: "";
}

.status-band {
  display: grid;
  grid-template-columns: repeat(4, max-content) minmax(240px, 1fr);
  gap: 10px 18px;
  align-items: center;
  margin-top: 30px;
}

.status-band span {
  padding-bottom: 2px;
  border-bottom: 3px solid var(--peach-soft);
  font-weight: 800;
}

.status-band p {
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: right;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.demo-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.demo-points {
  display: grid;
  gap: 8px;
  padding-left: 1.4em;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #d7bcae;
  border-radius: 8px;
  background: #5f493f;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding-left: 4px;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.limitations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: start;
}

.limitations-lead {
  max-width: 650px;
  color: var(--peach-deep);
  font-size: 1.05rem;
  font-weight: 800;
}

.limitations .plain-list {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.monitor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.monitor-heading h2 {
  margin-bottom: 0;
}

.monitor-heading em {
  display: inline-block;
  color: var(--peach-deep);
  font-style: normal;
}

.monitor-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card-featured {
  border: 2px solid var(--peach-deep);
  background: #fffaf6;
  box-shadow: var(--shadow);
}

.monitor-badge {
  position: absolute;
  top: -17px;
  right: 22px;
  padding: 7px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--peach-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.price-card-head {
  min-height: 88px;
}

.price-card-head p {
  margin-bottom: 4px;
  color: var(--peach-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.price-card-head h3 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

.price-list {
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
}

.price-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.78fr) minmax(0, 1.22fr);
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-list dd {
  margin: 0;
  font-size: 2rem;
  font-weight: 850;
  text-align: right;
}

.price-list dd small {
  margin-left: 4px;
  font-size: 0.8rem;
}

.price-list dd span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.saving-note,
.annual-note {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.saving-note {
  font-weight: 700;
}

.monitor-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.example-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.example-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.example-list span {
  font-weight: 800;
}

.setup-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 100px);
  margin-top: 48px;
}

.setup-columns > div {
  padding-top: 30px;
  border-top: 1px solid #dcbcac;
}

.small-note {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 46px 0 36px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  min-height: 140px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list li:nth-child(4n + 1) {
  border-left: 1px solid var(--line);
}

.flow-list span {
  color: var(--peach-deep);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.flow-list p {
  margin: 18px 0 0;
  font-weight: 750;
  line-height: 1.6;
}

.fit-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 18px 24px;
  border-left: 4px solid var(--peach);
  background: var(--cream);
  color: var(--ink-soft);
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: start;
}

#faq-title {
  font-size: clamp(2.6rem, 2.6vw, 2.8rem);
  word-break: keep-all;
  line-break: strict;
}

.faq-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--peach-deep);
  font-size: 1.4rem;
  content: "+";
}

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

.faq-list details p {
  margin: 0;
  padding: 0 38px 24px 0;
  color: var(--ink-soft);
}

.contact {
  text-align: center;
  background: var(--paper);
}

.contact-inner {
  max-width: 760px;
}

.contact-inner h2 {
  margin-bottom: 18px;
}

.contact-inner > p:not(.eyebrow, .line-pending) {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.button-line {
  min-width: min(100%, 340px);
  color: var(--white);
  background: var(--green);
}

.button-line:hover {
  background: var(--green-deep);
}

.line-dot {
  display: grid;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-inner > small {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
}

.line-pending {
  margin: 16px auto 0;
  color: var(--peach-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  color: #efe4dd;
  background: #4c3c35;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 40px;
  align-items: end;
}

.footer-inner strong {
  color: var(--white);
}

.footer-inner p {
  margin: 4px 0 0;
  font-size: 0.84rem;
}

.footer-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-inner small {
  grid-column: 1 / -1;
  color: #cdbeb5;
}

.mobile-line-cta {
  display: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 1120px) {
  .mini-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .maker-heading {
    position: static;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }
}

@media (max-width: 980px) {
  .hero-shade {
    width: 72%;
  }

  .step {
    grid-template-columns: 54px 150px minmax(0, 1fr);
    gap: 22px;
  }

  .step-visual {
    width: 145px;
    transform: scale(0.85);
  }

  .section-heading-row,
  .monitor-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .status-band {
    grid-template-columns: repeat(4, max-content);
  }

  .status-band p {
    grid-column: 1 / -1;
    margin-left: 0;
    text-align: left;
  }

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

  .mini-feature-grid,
  .folded-layout {
    grid-template-columns: 1fr;
  }

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

  .screen-step-wide {
    grid-template-columns: 1fr;
  }

  .screen-step-wide + .screen-step-phone {
    grid-column: auto;
  }

  .screen-step-wide {
    margin-top: -6px;
  }

  .screen-step-wide + .screen-step-phone {
    margin-top: 0;
  }

  .flow-list li:nth-child(4n + 1) {
    border-left: 0;
  }

  .flow-list li:nth-child(2n + 1) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .screen-flow-list {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .screen-step-wide,
  .screen-step-wide + .screen-step-phone {
    grid-column: auto;
  }

  .screen-step-wide {
    margin-top: -4px;
  }

  .screen-step-wide + .screen-step-phone {
    margin-top: 0;
  }

  .phone-frame {
    max-width: min(100%, 360px);
  }

  .wait-note {
    flex-direction: column;
    gap: 8px;
  }

  :root {
    --header-height: 70px;
  }

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

  .section {
    padding: 74px 0;
  }

  h2 {
    font-size: 2.35rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: min(720px, 78svh);
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    width: 100%;
    background: rgba(255, 253, 249, 0.72);
  }

  .hero-content {
    align-self: end;
    padding-block: 70px 58px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-note {
    width: 100%;
  }

  .intro-grid,
  .maker-layout,
  .demo-layout,
  .limitations-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 18px;
    padding: 30px 0;
  }

  .step-number {
    grid-row: 1 / 3;
  }

  .step-visual {
    grid-column: 2;
    width: 150px;
    height: 120px;
    margin-inline: 0;
    transform: scale(0.72);
    transform-origin: left center;
  }

  .step-copy {
    grid-column: 2;
  }

  .maker-heading,
  .faq-layout > div:first-child {
    position: static;
  }

  .feature-columns,
  .pricing-grid,
  .monitor-details,
  .setup-columns,
  .recommended-grid,
  .mini-feature-grid,
  .monitor-price-comparison,
  .folded-layout {
    grid-template-columns: 1fr;
  }

  .feature-group,
  .feature-group + .feature-group {
    padding: 30px 0;
    border-left: 0;
  }

  .feature-group + .feature-group {
    border-top: 1px solid var(--line);
  }

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

  .status-band p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .demo-layout {
    gap: 42px;
  }

  .recommended-grid {
    gap: 0;
  }

  .screen-flow-summary {
    width: 100%;
  }

  .compare-change-row {
    grid-template-columns: max-content 20px max-content;
    justify-content: start;
  }

  .compare-term {
    grid-column: 1 / -1;
  }

  .mini-feature {
    min-height: 0;
  }

  .monitor-hero-card h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .maker-heading h2,
  #faq-title {
    font-size: clamp(2.35rem, 9.6vw, 3.1rem);
    line-height: 1.25;
  }

  .compare-change-row {
    grid-template-columns: 1fr auto auto;
    gap: 6px 10px;
  }

  .compare-term {
    grid-column: 1 / -1;
  }

  .price-card-head {
    min-height: 0;
  }

  .monitor-details {
    gap: 38px;
  }

  .setup-columns {
    gap: 32px;
  }

  .faq-layout {
    gap: 18px;
  }

  .mobile-line-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    z-index: 90;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 8px 24px rgba(17, 75, 49, 0.24);
    font-weight: 850;
    text-decoration: none;
  }

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .header-inner {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    max-width: 172px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: min(600px, 72svh);
  }

  .intro.section {
    padding-top: 52px;
  }

  .hero-content {
    padding-block: 56px 44px;
  }

  .seasonal-kicker {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .step-visual {
    margin-left: -6px;
  }

  .status-band {
    gap: 10px 20px;
  }

  .price-card {
    padding: 28px 20px;
  }

  .price-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-list dd {
    text-align: left;
  }

  .example-list li {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-list,
  .flow-list-compact {
    grid-template-columns: 1fr;
  }

  .flow-list li,
  .flow-list li:nth-child(2n + 1) {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-left: 1px solid var(--line);
  }

  .flow-list p {
    margin-top: 0;
  }

  .fit-note {
    padding: 16px;
    text-align: left;
  }

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

  .footer-inner small {
    grid-column: auto;
  }
}

@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;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
