:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --surface-soft: #f2f3ed;
  --sage: #dce8dc;
  --sage-deep: #657d69;
  --blue: #3f6070;
  --clay: #b77b5d;
  --ink: #2f312d;
  --text: #4d514a;
  --muted: #74786f;
  --line: #e2ddd2;
  --shadow: 0 22px 55px rgba(47, 49, 45, 0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.45; }

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.2vw, 3.85rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
}

h3 { margin-bottom: 10px; font-size: 1.18rem; }
ul, ol { margin-top: 0; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(226, 221, 210, 0.82);
  backdrop-filter: blur(14px);
}

.logo {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #595e56;
  font-size: 0.88rem;
  font-weight: 700;
}

.header-nav a:hover { color: var(--ink); }

.menu-toggle {
  display: none;
}

.motion-ready .hero-copy {
  animation: hero-copy-in 0.8s cubic-bezier(.22,.8,.2,1) both;
}

.motion-ready .hero-device-showcase {
  animation: hero-showcase-in 0.95s 0.16s cubic-bezier(.22,.8,.2,1) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-showcase-in {
  from {
    opacity: 0;
    transform: translateX(26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.68s ease var(--reveal-delay, 0ms),
    transform 0.78s cubic-bezier(.22,.8,.2,1) var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section { padding: 88px 0; }
.section-tint { background: var(--surface-soft); }

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: 66px 0 70px;
  background:
    radial-gradient(circle at 10% 18%, rgba(220,232,220,0.62), transparent 28%),
    linear-gradient(112deg, #fbfaf6 0%, #fbfaf6 62%, #314031 62%, #2a382c 100%);
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.96fr) minmax(360px, 1.04fr);
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.28;
  color: var(--ink);
}

.hero-copy .eyebrow {
  color: var(--sage-deep);
}

.hero-copy .hero-text {
  color: var(--text);
}

.hero-support {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.hero .button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 34px rgba(47, 49, 45, 0.18);
}

.hero-checks {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 28px;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--sage);
}

.hero-checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.56em + 3px);
  width: 6px;
  height: 9px;
  border: solid var(--sage-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--sage-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.lead {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2.4vw, 1.55rem);
  font-weight: 700;
}

.hero-text, .section-heading p { max-width: 700px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 15px 28px rgba(47, 49, 45, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-cta-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-showcase {
  margin: 0;
  padding: 12px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(31, 35, 30, 0.28);
  overflow: hidden;
  transform: translateX(3%);
}

.hero-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 13px;
}

.hero-device-showcase {
  position: relative;
  min-height: 540px;
}

.real-laptop {
  position: absolute;
  left: 16px;
  top: 62px;
  width: min(635px, 98%);
  filter: drop-shadow(0 34px 78px rgba(31, 35, 30, 0.28));
}

.real-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 16px 16px 20px;
  background: linear-gradient(145deg, #0d0f0e, #2d302d);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 24px 24px 8px 8px;
}

.real-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #050605;
  transform: translateX(-50%);
}

.real-site {
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(222,216,204,0.28) 1px, transparent 1px),
    linear-gradient(180deg, rgba(222,216,204,0.24) 1px, transparent 1px),
    #f6f4ef;
  background-size: 96px 100%, 100% 72px, auto;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.real-site-header {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 42px;
  padding: 0 24px;
  border-bottom: 1px solid #ded8cc;
  color: #173240;
  font-size: 0.72rem;
}

.real-site-header strong {
  margin-right: auto;
}

.real-site-header span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #7c837a;
  font-weight: 700;
}

.real-site-main {
  display: grid;
  grid-template-columns: 0.86fr 1.08fr;
  gap: 34px;
  padding: 42px 46px 30px;
  align-items: center;
  border-bottom: 1px solid rgba(222, 216, 204, 0.8);
}

.real-site-copy p {
  margin-bottom: 15px;
  color: #7e8c81;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.real-site-copy h3 {
  margin-bottom: 16px;
  color: #173240;
  font-size: clamp(1.2rem, 1.65vw, 1.58rem);
  line-height: 1.35;
}

.real-site-copy small {
  display: block;
  margin-bottom: 20px;
  color: #5f665f;
  font-size: 0.78rem;
  line-height: 1.8;
}

.real-site-copy b {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: #173240;
  color: #fff;
  font-size: 0.78rem;
}

.real-site-photo {
  min-height: 226px;
  border-radius: 4px;
  background:
    linear-gradient(0deg, rgba(23,50,64,0.08), rgba(23,50,64,0.01)),
    url("assets/in-screen-business-photo.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.real-site-photo::before {
  content: none;
}

.real-site-photo::after {
  content: none;
}

.real-site-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 22px 46px 34px;
}

.real-site-lower article {
  min-height: 80px;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e2ddd2;
}

.real-site-lower strong {
  display: block;
  margin-bottom: 12px;
  color: #173240;
  font-size: 0.82rem;
}

.real-site-lower span {
  display: block;
  width: 76%;
  height: 7px;
  border-radius: 999px;
  background: #d0c8bb;
}

.real-site-lower em {
  display: block;
  width: 46%;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: #e5dfd3;
}

.real-laptop-base {
  position: relative;
  width: 108%;
  height: 28px;
  margin-left: -4%;
  background: linear-gradient(180deg, #d9d8d3, #a8aaa6);
  border-radius: 0 0 32px 32px;
}

.real-laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 26%;
  height: 8px;
  border-radius: 0 0 999px 999px;
  background: rgba(47,49,45,0.25);
  transform: translateX(-50%);
}

.domain-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
}

.trust-strip {
  padding: 24px 0;
  background: #2f312d;
  color: #fff;
}

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

.trust-grid div {
  padding: 8px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; font-size: 1.05rem; }
.trust-grid span { display: block; color: rgba(255,255,255,0.72); font-size: 0.9rem; }

.section-heading { margin-bottom: 38px; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin-inline: auto; }

.worry-grid, .menu-grid, .price-grid {
  display: grid;
  gap: 18px;
}

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

.worry-grid p,
.menu-card,
.price-card,
.feature-list article,
.notes-box,
.faq-list details,
.proof-cards article,
.sample-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.worry-grid p {
  min-height: 126px;
  margin: 0;
  padding: 24px;
  color: var(--ink);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.section-image {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(47,49,45,0.08);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 26px;
  border-left: 4px solid var(--sage-deep);
}

.feature-list span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clay);
  font-weight: 700;
}

.wide-image {
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(47,49,45,0.08);
}

.section-proof {
  background: #fff;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.proof-cards {
  display: grid;
  gap: 16px;
}

.proof-cards article {
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(220,232,220,0.65), transparent 34%),
    var(--surface);
  border-left: 4px solid var(--sage-deep);
}

.proof-cards span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clay);
  font-weight: 800;
}

.proof-cards p {
  margin-bottom: 0;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 30px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(47,49,45,0.08);
}

.menu-intro .wide-image {
  margin: 0;
  box-shadow: none;
}

.menu-intro h3 {
  font-size: 1.42rem;
}

.menu-intro p {
  margin-bottom: 0;
}

.menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-card { padding: 24px; }
.menu-card p { min-height: 84px; }
.menu-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.28rem;
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.price-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.price-guide div {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47,49,45,0.06);
}

.price-guide span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-guide strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.6;
}

.price-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.fit-label,
.recommend-label,
.sample-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.fit-label {
  background: #f4f6f0;
  color: var(--blue);
}

.recommend-label {
  background: var(--blue);
  color: #fff;
}

.plan-label {
  margin-bottom: 12px;
  color: var(--sage-deep);
  font-weight: 700;
}

.price-card h3 { font-size: 1.85rem; }

.price-subhead {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding-left: 1.25em;
}

.notes-box {
  margin-top: 28px;
  padding: 28px;
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  padding-left: 1.25em;
}

.mid-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(47,49,45,0.08);
}

.mid-cta h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.mid-cta p:last-child {
  margin-bottom: 0;
}

.cta-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cta-actions p,
.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.option-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.option-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.option-table th,
.option-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.option-table th {
  background: #f4f6f0;
  color: var(--ink);
  font-size: 0.9rem;
}

.option-table tr:last-child td { border-bottom: 0; }

.section-samples {
  background:
    linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
}

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

.sample-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.sample-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 560px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(47,49,45,0.08);
}

.sample-visual {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(183,123,93,0.13), transparent 28%),
    linear-gradient(145deg, #f7f5ee, #eef4ed);
  border-bottom: 1px solid var(--line);
}

.sample-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.65);
  box-shadow: 0 18px 38px rgba(47,49,45,0.12);
}

.sample-preview-link {
  display: block;
  width: 100%;
  height: 100%;
}

.sample-preview-link img {
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.sample-preview-link:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(47,49,45,0.18);
}

.sample-body {
  padding: 26px;
}

.sample-type {
  background: #eef4ed;
  color: var(--sage-deep);
}

.industry-label {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.sample-card.dark .sample-visual {
  background: linear-gradient(145deg, #f7f5ee, #e7e2d8);
}

.sample-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sample-points li {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.sample-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--sage-deep);
  color: var(--sage-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.sample-link span {
  transition: transform 0.2s ease;
}

.sample-link:hover span {
  transform: translateX(4px);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
}

.flow-list span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--ink);
}

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

.faq-list details { padding: 20px 22px; }
.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}
.faq-list p { margin: 12px 0 0; }

.section-profile { background: var(--surface); }

.profile-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.profile-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(47,49,45,0.08);
}

.profile-copy {
  max-width: 690px;
}

.profile-lead {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.75;
}

.profile-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.profile-strengths article {
  padding: 18px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-strengths span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sage-deep);
  font-weight: 800;
}

.profile-strengths p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.final-cta {
  padding: 86px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.final-cta h2 { color: #fff; }
.final-cta p { max-width: 720px; margin-inline: auto; }
.final-cta .eyebrow { color: #dfe9d9; }
.final-cta .button-primary {
  margin-top: 22px;
  background: #fff;
  color: var(--ink);
}

.final-cta .cta-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 30px 0;
  background: #252722;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p { margin: 0; }

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 22;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
  }
  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }
  .menu-toggle i {
    position: relative;
  }
  .menu-toggle i::before {
    content: "";
    position: absolute;
    top: 6px;
  }
  .menu-toggle[aria-expanded="true"] i {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] i::before {
    transform: translateY(-6px) rotate(-90deg);
  }
  .header-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 112px 28px 40px;
    background: rgba(251, 250, 246, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  .site-header.menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
  }
  .header-nav a:last-child {
    justify-content: center;
    min-height: 52px;
    margin-top: 26px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
  }
  body.menu-open {
    overflow: hidden;
  }
  .split-layout, .profile-layout, .mid-cta, .sample-grid, .proof-layout, .menu-intro { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-showcase { padding: 18px; }
  .sticky-heading { position: static; }
  .trust-grid, .worry-grid, .menu-grid, .price-grid, .price-guide, .notes-list, .flow-list, .profile-strengths { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-grid div:last-child { border-bottom: 0; }
  .menu-card p { min-height: auto; }
  .profile-image { max-width: 360px; }
  .sample-card { grid-template-columns: 1fr; }
  .cta-actions { justify-items: start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { padding: 14px; }
  .section { padding: 62px 0; }
  .hero { padding-top: 42px; }
  .hero-layout { grid-template-columns: 1fr; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .proof-cards { grid-template-columns: 1fr; }
  .worry-grid p, .menu-card, .price-card, .feature-list article, .notes-box, .faq-list details, .mid-cta, .sample-body { padding: 20px; }
  .sample-card { min-height: auto; }
  .sample-visual { min-height: 0; }
  .option-table { min-width: 0; }
  .option-table thead { display: none; }
  .option-table, .option-table tbody, .option-table tr, .option-table td { display: block; width: 100%; }
  .option-table tr { border-bottom: 1px solid var(--line); }
  .option-table tr:last-child { border-bottom: 0; }
  .option-table td { border-bottom: 0; padding: 12px 18px; }
  .option-table td:first-child { padding-top: 18px; color: var(--ink); font-weight: 700; }
  .option-table td:last-child { padding-bottom: 18px; }
  .footer-inner { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-ready .hero-copy,
  .motion-ready .hero-device-showcase {
    animation: none;
  }
  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sample-preview-link img,
  .button,
  .sample-link span {
    transition: none;
  }
}
