:root {
  --ink: #141414;
  --muted: #66615c;
  --line: #ded8d1;
  --paper: #faf8f4;
  --white: #ffffff;
  --charcoal: #1b1a18;
  --olive: #5f674b;
  --gold: #b08a45;
  --clay: #936b4f;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 248, 244, 0.92);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  max-width: min(340px, 55vw);
  min-width: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.logo span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  white-space: nowrap;
}

.logo small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 22px;
  color: #4f4a45;
  font-size: 14px;
}

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

.header-cta,
.button,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.button.primary,
.header-cta,
.sticky-cta a {
  color: var(--white);
  background: var(--ink);
}

.header-cta,
.sticky-cta a {
  color: #ffd84d;
  background: #0f6b3a;
  border-color: #0f6b3a;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.64);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 18s infinite ease-in-out;
  will-change: opacity, transform;
}

.hero-slide-1 {
  opacity: 1;
}

.hero-slide-2 {
  animation-delay: 6s;
}

.hero-slide-3 {
  animation-delay: 12s;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 14, 13, 0.94), rgba(15, 14, 13, 0.62) 42%, rgba(15, 14, 13, 0.18)),
    linear-gradient(0deg, rgba(15, 14, 13, 0.8), transparent 35%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.86) contrast(1.08);
}

.hero-slide-2 img {
  object-position: 74% center;
}

.hero-slide-3 img {
  object-position: 70% center;
}

@keyframes heroFade {
  0%,
  33% {
    opacity: 1;
    transform: scale(1.04);
  }

  41%,
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  padding: clamp(46px, 8vw, 112px) clamp(20px, 6vw, 82px) 120px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 5.2vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.38;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-style-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-style-cues span {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero .button {
  min-height: 54px;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero .button.primary {
  background: var(--white);
  color: var(--ink);
}

.hero .button.ghost {
  color: var(--white);
  background: transparent;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 42px 0 0;
  background: rgba(255, 255, 255, 0.2);
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip dt {
  font-size: 22px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.band {
  padding: clamp(70px, 9vw, 112px) 0;
  background: var(--white);
}

.band.dark {
  color: var(--white);
  background: #20201d;
}

.two-col,
.business .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.problem-list {
  color: #3d3934;
  font-size: 17px;
}

.problem-list ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding-left: 28px;
}

.problem-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.seo-guide {
  padding-bottom: clamp(56px, 7vw, 90px);
}

.article-grid,
.review-columns,
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card,
.review-columns article,
.intent-grid article {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(20, 20, 20, 0.08);
}

.article-image {
  margin: calc(clamp(24px, 3vw, 34px) * -1) calc(clamp(24px, 3vw, 34px) * -1) 22px;
  background: #eee9e2;
}

.article-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-card h3,
.review-columns h3,
.intent-grid h3 {
  margin-bottom: 14px;
}

.article-card p,
.review-columns p,
.deep-text p,
.usecase-list p,
.knowledge-stack p,
.intent-grid p,
.decision-note p {
  color: var(--muted);
}

.article-card p:last-child,
.review-columns p:last-child,
.deep-text p:last-child,
.usecase-list p:last-child,
.knowledge-stack p:last-child,
.intent-grid p:last-child,
.decision-note p:last-child {
  margin-bottom: 0;
}

.review-points {
  border-top: 1px solid rgba(20, 20, 20, 0.06);
}

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

.review-columns article:first-child {
  background: #fbfaf6;
}

.deep-text,
.decision-note {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: #f4f0ea;
  border: 1px solid var(--line);
}

.deep-text h3,
.decision-note h3 {
  margin-bottom: 14px;
}

.owner-review {
  padding-top: clamp(56px, 7vw, 90px);
}

.owner-review-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.owner-review-photo {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  margin: 0;
  background: #eee9e2;
}

.owner-review-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.owner-review-photo figcaption,
.review-photo-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.owner-review-copy {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 48px);
}

.owner-review-copy article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.owner-review-copy article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.owner-review-copy h3 {
  margin-top: 12px;
}

.owner-review-copy p,
.review-check-list {
  color: var(--muted);
}

.review-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.review-photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: #eee9e2;
  border: 1px solid var(--line);
}

.review-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.review-check-list li {
  padding: 14px 16px;
  background: #f7f2ea;
  border-left: 4px solid var(--gold);
}

.review-check-list strong {
  color: var(--ink);
}

.owner-review-summary {
  padding: 22px;
  background: #fbfaf6;
  border: 1px solid var(--line);
}

.usecase {
  padding-top: clamp(56px, 7vw, 90px);
}

.usecase-list,
.knowledge-stack {
  display: grid;
  gap: 18px;
}

.usecase-list article,
.knowledge-stack article {
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
}

.usecase-list article {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.usecase-image {
  margin: 0;
  min-height: 100%;
  background: #eee9e2;
}

.usecase-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.usecase-copy {
  padding: clamp(24px, 3vw, 36px);
}

.usecase-list h3,
.knowledge-stack h3 {
  color: var(--ink);
}

.knowledge {
  border-top: 1px solid rgba(20, 20, 20, 0.06);
}

.knowledge-stack article {
  position: relative;
  padding-left: clamp(28px, 4vw, 46px);
}

.knowledge-stack article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gold);
  content: "";
}

.search-intent {
  padding-top: clamp(56px, 7vw, 90px);
}

.intent-grid article .num {
  margin-bottom: 14px;
}

.reason-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.reason-main-image {
  margin: 0;
  min-height: 460px;
  background: #ece7df;
}

.reason-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-story {
  align-self: center;
  padding: clamp(28px, 4vw, 48px);
}

.reason-story h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.reason-story p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.proof-list strong {
  color: var(--ink);
}

.proof-list span {
  color: var(--muted);
}

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

.feature-grid article {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(20, 20, 20, 0.09);
}

.feature-grid article:last-child {
  border-right: 1px solid var(--line);
}

.feature-image {
  margin: 0;
  min-height: 100%;
  background: #eee9e2;
}

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

.feature-image-contain {
  padding: 16px;
}

.feature-image-contain img {
  object-fit: contain;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px;
}

.num {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.feature-grid p,
.model-card p,
.faq p {
  color: var(--muted);
}

.support {
  background: #f4f0ea;
}

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

.support-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(20, 20, 20, 0.1);
}

.support-card.accent {
  background: #fffaf1;
}

.support-head {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.support-badge {
  width: fit-content;
  padding: 5px 10px;
  color: var(--white);
  background: var(--olive);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.support-card.accent .support-badge {
  background: var(--clay);
}

.support-card p {
  color: var(--muted);
}

.support-steps {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.support-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 700;
}

.support-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
}

.support-note {
  margin: auto 0 18px;
  padding: 18px;
  background: #f7f2ea;
  border-left: 4px solid var(--gold);
}

.support-note strong {
  display: block;
  margin-bottom: 6px;
}

.support-note p {
  margin: 0;
}

.measure-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.measure-grid div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.measure-grid span {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.measure-grid strong {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
}

.business-copy {
  max-width: 560px;
}

.business-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.business-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #f4f0ea;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.business-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--ink);
  border-top: 1px solid #ddd4ca;
}

.specs div {
  padding: 18px;
  border-right: 1px solid #ddd4ca;
}

.specs div:last-child {
  border-right: 0;
}

.specs span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.specs strong {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
}

.choice-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.choice-buttons {
  display: grid;
  gap: 10px;
}

.choice-buttons button {
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.choice-buttons button.is-active {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.choice-result {
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  background: #f7f2ea;
}

.choice-image {
  margin: 0;
  overflow: hidden;
  background: #eee9e2;
}

.choice-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.choice-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 10px 10px 0;
}

.choice-copy .text-link {
  align-self: flex-start;
}

.result-label,
.tag {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

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

.model-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.model-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: #f1ede6;
}

.model-card div {
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

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

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--white);
  background: var(--ink);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  width: 170px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(72px, 8vw, 108px);
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(135deg, #1b1a18, #40362c);
}

.cta-band p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.cta-band .button.primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.faq {
  padding-top: 0;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.site-footer {
  display: grid;
  gap: 4px;
  padding: 34px 20px 96px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  text-align: center;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 12px 44px rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(12px);
}

.sticky-cta span {
  padding-left: 8px;
  font-size: 13px;
  font-weight: 800;
}

.sticky-cta a {
  min-height: 40px;
  padding-inline: 16px;
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(15, 14, 13, 0.95), rgba(15, 14, 13, 0.42) 72%, rgba(15, 14, 13, 0.12)),
      linear-gradient(90deg, rgba(15, 14, 13, 0.7), transparent);
  }

  .hero-content {
    align-self: end;
    padding-bottom: 130px;
  }

  .two-col,
  .business .section-inner,
  .choice-panel,
  .support-grid,
  .owner-review-panel,
  .article-grid,
  .review-columns,
  .intent-grid,
  .usecase-list article {
    grid-template-columns: 1fr;
  }

  .reason-showcase,
  .feature-grid,
  .proof-list,
  .feature-grid article,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .reason-main-image {
    min-height: 380px;
  }

  .feature-grid article {
    grid-template-columns: 220px 1fr;
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .logo span {
    font-size: 13px;
  }

  .logo small {
    font-size: 9px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-inline: 20px;
  }

  .hero-title {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.18;
  }

  .hero-actions {
    display: grid;
  }

  .hero-style-cues span {
    font-size: 11px;
  }

  .trust-strip,
  .choice-result,
  .feature-grid,
  .model-grid,
  .specs {
    grid-template-columns: 1fr;
  }

  .choice-image img {
    min-height: 220px;
  }

  .choice-copy {
    padding: 4px;
  }

  .owner-review-photo img {
    min-height: 0;
  }

  .owner-review-copy {
    padding: 22px;
  }

  .review-photo-grid {
    grid-template-columns: 1fr;
  }

  .usecase-image img {
    min-height: 220px;
  }

  .feature-grid article {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 220px;
  }

  .specs div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .specs div:last-child {
    border-bottom: 0;
  }

  .proof-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .choice-panel {
    padding: 14px;
  }

  .choice-result {
    padding: 22px;
  }

  .support-card {
    padding: 22px;
  }

  .support-steps li {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: space-between;
  }

  .sticky-cta span {
    max-width: 48%;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}
