:root {
  --ink: #182025;
  --muted: #657179;
  --line: #dce5e7;
  --paper: #ffffff;
  --soft: #f5f8f8;
  --aqua: #20adb6;
  --aqua-dark: #108892;
  --green: #7cb54e;
  --yellow: #f2d35a;
  --pink: #de6ca4;
  --orange: #f45b2b;
  --orange-dark: #b54322;
  --green-dark: #5d8d35;
  --shadow: 0 24px 70px rgba(24, 32, 37, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  border-bottom: 1px solid rgba(220, 229, 231, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: #526067;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--aqua-dark);
  border-color: var(--aqua);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -5px;
}

.nav-toggle-lines::after {
  top: 5px;
}

.site-header.is-nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-lines::before {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-lines::after {
  transform: translateY(-5px) rotate(-90deg);
}

.section,
.section-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 128px clamp(20px, 5vw, 52px);
}

.section-band {
  max-width: none;
}

.section+.section,
.section+.section-band,
.section-band+.section {}

.hero {
  display: grid;
  min-height: min(72vh, 680px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
  padding-top: 56px;
  padding-bottom: 48px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(18, 171, 177, 0.22) 0 35%, transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.hero-copy {
  max-width: 650px;
  justify-self: end;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--aqua-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(30px, 3.7vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.75;
}

.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

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

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

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

.button-primary:hover {
  background: var(--aqua-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.button-secondary:hover {
  border-color: var(--aqua);
  color: var(--aqua-dark);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 460px;
  justify-self: center;
}

.screen-card {
  position: absolute;
  margin: 0;
}

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

.screen-card-pc {
  top: 58px;
  right: 46px;
  width: min(47vw, 520px);
  height: 294px;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
}

.browser-bar {
  display: grid;
  grid-template-columns: 8px 8px 8px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 12px;
  border-bottom: 1px solid #e7edf0;
  background: #f8fbfb;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8d4d8;
}

.browser-bar span:nth-child(1) {
  background: #ff8f7d;
}

.browser-bar span:nth-child(2) {
  background: #ffc65c;
}

.browser-bar span:nth-child(3) {
  background: #7fc8a1;
}

.browser-screen {
  height: calc(100% - 30px);
  overflow: hidden;
}

.browser-screen img {
  object-position: left top;
}

.phone-shell {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 24px;
  background: #f8fbfb;
  box-shadow:
    12px 14px 30px rgba(29, 56, 63, 0.14),
    -8px -8px 22px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.phone-shell::before {
  display: block;
  width: 34px;
  height: 4px;
  margin: 0 auto 7px;
  border-radius: 999px;
  background: #dce6e8;
  content: "";
}

.phone-shell img {
  height: calc(100% - 11px);
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
}

.screen-card-news {
  left: 8%;
  bottom: 24px;
  width: 166px;
  height: 274px;
  transform: rotate(-3deg);
}

.screen-card-thanks {
  left: 38%;
  bottom: 2px;
  width: 172px;
  height: 280px;
  transform: rotate(2deg);
}

.screen-card-guest {
  right: 3%;
  bottom: -8px;
  width: 154px;
  height: 258px;
  transform: rotate(-1deg);
}

.screen-card-guest img {
  object-position: center top;
}

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

.section-heading p {
  color: var(--muted);
}

.two-column {
  display: grid;
  max-width: 820px;
  grid-template-columns: 1fr;
  gap: 14px;
  color: #38464d;
  font-size: 19px;
  font-weight: 600;
}

.support-section {
  display: grid;
  max-width: none;
  grid-template-columns:
    minmax(clamp(20px, 5vw, 52px), 1fr) minmax(0, 680px) minmax(360px, 460px) minmax(clamp(20px, 5vw, 52px), 1fr);
  column-gap: 56px;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eaf8f6;
}

.support-copy {
  grid-column: 2;
  max-width: 760px;
}

.support-copy p {
  color: #445158;
}

.support-illustration {
  grid-column: 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(24, 32, 37, 0.1);
}

.support-illustration img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center bottom;
}

.industry-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tags {
  align-content: center;
  justify-content: flex-start;
}

.support-tags {
  margin: 26px 0;
}

.industry-tags span,
.tag-list span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  position: relative;
  padding: 6px 12px 6px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.industry-tags span,
.tag-list span {
  border-color: #d9e3e5;
  background: var(--paper);
}

.industry-tags span::before,
.tag-list span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 18px;
  border-radius: 0 2px 2px 0;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.reason-section {
  max-width: none;
  background: #fff6f1;
}

.reason-section>.section-heading,
.reason-section>.issue-grid,
.reason-section>.section-close {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reason-section>.section-heading {
  margin-bottom: 44px;
}

.issue-grid,
.effect-grid,
.strength-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.issue-grid article,
.effect-grid article,
.strength-grid article,
.service-grid article,
.member-list article,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.issue-grid article {
  display: grid;
  min-height: 360px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px;
  overflow: hidden;
}

.issue-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--paper);
  background: #d94b3d;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.reason-section .eyebrow {
  color: #b83b31;
}


.issue-grid h3 {
  color: #8f2f29;
}

.issue-illustration {
  grid-column: 1 / -1;
  align-self: end;
  margin: -10px -4px -8px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.issue-illustration img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center bottom;
}

.issue-illustration-large img {
  transform: scale(1.14);
}

.issue-grid p,
.effect-grid p,
.strength-grid p,
.service-grid p,
.product-card p,
.member-list p {
  color: var(--muted);
}

.section-close {
  max-width: 760px;
  margin: 36px 0 0;
  padding-left: 18px;
  color: #334148;
  font-size: 18px;
  font-weight: 700;
}

.products-section {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef8ea;
}

.products-section>.section-heading,
.product-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.product-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.product-inhouse::after {
  background: var(--orange);
}

.product-guest::after {
  background: var(--aqua);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-meta strong {
  color: var(--aqua-dark);
}

.product-inhouse .product-meta strong {
  color: var(--orange-dark);
}

.product-guest .product-meta strong {
  color: var(--aqua-dark);
}

.product-catch {
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 800;
}

.product-preview-row {
  display: grid;
  grid-template-columns: minmax(120px, 155px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 24px 0 4px;
}

.product-screen {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16.8;
  padding: 7px;
  border-radius: 22px;
  background: #182025;
  box-shadow: 0 14px 34px rgba(24, 32, 37, 0.16);
}

.phone-frame::before {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: #0f1417;
  content: "";
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: var(--paper);
  object-fit: cover;
  object-position: top center;
}

.product-card .tag-list {
  margin-top: auto;
  padding-top: 30px;
}

.product-card .product-tags {
  display: grid;
  align-content: center;
  gap: 8px;
  margin-top: 0;
  padding-top: 0;
}

.product-card .product-tags span {
  width: 100%;
  min-height: 32px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: var(--aqua-dark);
  font-weight: 900;
}

.text-link-inhouse {
  color: var(--orange-dark);
}

.text-link-guest {
  color: var(--aqua-dark);
}

.text-link:hover {
  color: var(--ink);
}

.case-section {
  border-bottom: 1px solid var(--line);
}

.compact {
  margin-bottom: 30px;
}

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

.effect-grid article,
.strength-grid article,
.service-grid article {
  padding: 24px;
}

.effect-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 148px;
  margin: -6px -8px 18px;
  overflow: hidden;
  border-radius: 8px;
}

.effect-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.effect-visual-large img {
  transform: scale(1.16);
}

.effect-visual-xl img {
  transform: scale(1.48);
}

.pill {
  margin-bottom: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.pill-row .pill {
  margin-bottom: 0;
}

.pill-inhouse,
.effect-grid article:nth-child(1)>.pill,
.effect-grid article:nth-child(2)>.pill {
  border-color: rgba(244, 91, 43, 0.35);
  color: var(--orange-dark);
  background: #fff8f5;
}

.pill-guest,
.effect-grid article:nth-child(4)>.pill {
  border-color: rgba(32, 173, 182, 0.36);
  color: var(--aqua-dark);
  background: #f4fcfc;
}

.strength-section {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
}

.strength-lead,
.strength-grid,
.strength-section .note {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.strength-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 60px;
  margin-bottom: 48px;
}

.strength-section .eyebrow {
  color: var(--yellow);
}

.strength-statement {
  color: #dce5e7;
  font-size: 18px;
}

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

.strength-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.strength-grid p {
  color: #ccd7da;
}

.note {
  margin-top: 28px;
  color: #b3c1c5;
  font-size: 13px;
}

.pmdx-section {
  max-width: none;
  background: #fff7d8;
}

.pmdx-section>.section-heading,
.pmdx-section>.service-grid,
.pmdx-section>.large {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.pmdx-section>.section-heading {
  margin-bottom: 44px;
}

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

.large {
  margin-top: 34px;
  font-size: 18px;
}

.company-list {
  max-width: 880px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  font-weight: 700;
}

.member-list {
  display: grid;
  max-width: 880px;
  margin-top: 34px;
  gap: 16px;
}

.member-list article {
  padding: 24px;
}

.member-list h3 {
  margin-bottom: 12px;
}

.member-list .tag-list {
  margin-bottom: 20px;
}

.contact-section {
  max-width: none;
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    linear-gradient(135deg, rgba(32, 173, 182, 0.2), transparent 38%),
    linear-gradient(315deg, rgba(242, 211, 90, 0.34), transparent 34%),
    #eef8ea;
}

.contact-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 74px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: var(--muted);
}

.centered {
  justify-content: center;
  margin: 30px 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 54px);
  color: #7c878c;
  font-size: 13px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.product-detail-page {
  background: #fbfdfd;
}

.inhouse-hero {
  display: grid;
  min-height: min(78vh, 720px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(244, 91, 43, 0.11) 0 32%, transparent 32%),
    linear-gradient(180deg, #fffaf7 0%, #f6fcfc 100%);
}

.inhouse-hero-copy {
  max-width: 700px;
  justify-self: end;
}

.product-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 24px;
  padding: 5px 12px;
  border: 1px solid rgba(244, 91, 43, 0.26);
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff5ef;
  font-size: 13px;
  font-weight: 900;
}

.product-logo-lockup {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
}

.product-logo-lockup img {
  width: auto;
  object-fit: contain;
}

.spotlights-wordmark {
  height: 45px;
}

.inhouse-wordmark {
  height: 23px;
}

.inhouse-hero-lead {
  max-width: 670px;
  margin-bottom: 18px;
  color: #263238;
  font-size: clamp(20px, 2.3vw, 29px);
  font-weight: 900;
  line-height: 1.6;
}

.inhouse-hero-sub {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.inhouse-hero-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 520px;
  justify-self: center;
}

.inhouse-hero-screen {
  position: absolute;
  margin: 0;
}

.inhouse-hero-screen-main {
  top: 40px;
  left: 21%;
  z-index: 4;
  width: 224px;
  height: 408px;
  transform: rotate(-4deg);
}

.inhouse-hero-screen-pc {
  right: 0;
  bottom: 74px;
  z-index: 1;
  width: min(44vw, 500px);
  height: 266px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.inhouse-hero-screen-news {
  right: 8%;
  top: 12px;
  z-index: 3;
  width: 142px;
  height: 248px;
  transform: rotate(5deg);
}

.inhouse-hero-screen-voice {
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    14px 16px 34px rgba(29, 56, 63, 0.13),
    -8px -8px 22px rgba(255, 255, 255, 0.88);
}

.inhouse-hero-screen-voice {
  left: 0;
  bottom: 58px;
  z-index: 5;
  width: 250px;
  padding: 8px;
  transform: rotate(3deg);
}

.inhouse-hero-screen-post {
  right: 20%;
  bottom: 0;
  z-index: 6;
  width: 126px;
  height: 232px;
  transform: rotate(-5deg);
}

.inhouse-hero-screen-voice img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.inhouse-hero-screen-post .phone-shell {
  padding: 7px;
  border-radius: 18px;
}

.inhouse-hero-screen-post .phone-shell::before {
  width: 24px;
  height: 3px;
  margin-bottom: 5px;
}

.inhouse-hero-screen-post .phone-shell img {
  width: 100%;
  height: calc(100% - 8px);
  border-radius: 11px;
}

.inhouse-hero-screen-pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.inhouse-about-section {
  padding-top: 98px;
  padding-bottom: 98px;
}

.inhouse-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.52fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.inhouse-about-section .section-heading {
  max-width: 940px;
  margin-bottom: 0;
}

.inhouse-about-section .section-heading p:not(.eyebrow) {
  color: #39474d;
  font-size: 19px;
  font-weight: 700;
}

.inhouse-about-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.inhouse-about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.inhouse-problem-section,
.inhouse-case-section,
.inhouse-faq-section {
  max-width: none;
  background: #fff7f2;
}

.inhouse-problem-section>.section-heading,
.inhouse-problem-section>.inhouse-card-grid,
.inhouse-case-section>.section-heading,
.inhouse-case-section>.proof-grid,
.inhouse-case-section>.case-story-grid,
.inhouse-faq-section>.section-heading,
.inhouse-faq-section>.faq-list {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.inhouse-card-grid article,
.support-feature-grid article,
.case-story-grid article,
.pricing-card,
.price-example-card,
.step-list article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.inhouse-card-grid article {
  min-height: 210px;
  padding: 25px;
}

.inhouse-problem-grid .problem-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.problem-card-visual {
  margin: 18px 18px 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper);
}

.problem-card-visual img {
  display: block;
  width: 86%;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
}

.problem-card-body {
  padding: 20px 25px 26px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--orange);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.inhouse-card-grid h3,
.support-feature-grid h3,
.case-story-grid h3 {
  font-size: 20px;
}

.inhouse-card-grid p,
.support-feature-grid p,
.case-story-grid p,
.faq-list p,
.step-list p {
  color: var(--muted);
}

.case-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.case-feature-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px 6px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.case-feature-badge::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 18px;
  border-radius: 0 999px 999px 0;
  background: var(--aqua);
  content: "";
  transform: translateY(-50%);
}

.case-feature-badge.badge-thanks::before {
  background: var(--orange);
}

.case-feature-badge.badge-voice::before {
  background: var(--green);
}

.case-feature-badge.badge-newsletter::before {
  background: var(--aqua);
}

.inhouse-feature-section {
  max-width: none;
  background: #eef8ea;
}

.inhouse-feature-section>.section-heading,
.primary-feature-list,
.support-feature-block {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.primary-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: 34px 51px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.primary-feature-card:nth-child(even) {
  grid-template-columns: minmax(220px, 380px) minmax(0, 1fr);
}

.primary-feature-card:nth-child(even) .primary-feature-copy {
  grid-column: 2;
}

.primary-feature-card:nth-child(even) .feature-device {
  grid-column: 1;
  grid-row: 1;
}

.feature-card-thanks {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.12fr);
  gap: clamp(20px, 2.6vw, 38px);
}

.feature-card-thanks .primary-feature-copy {
  max-width: 500px;
}

.feature-card-thanks .feature-device-thanks {
  width: min(100%, 440px);
  justify-self: center;
}

.feature-card-voice {
  grid-template-columns: minmax(440px, 1.28fr) minmax(0, 0.72fr);
  gap: clamp(36px, 5vw, 90px);
}

.feature-card-voice .primary-feature-copy {
  max-width: 500px;
}

.feature-card-voice .feature-device-voice {
  width: min(100%, 520px);
  justify-self: center;
}

.feature-card-newsletter {
  grid-template-columns: minmax(0, 0.78fr) minmax(400px, 1.16fr);
  gap: clamp(20px, 2.6vw, 38px);
}

.feature-card-newsletter .primary-feature-copy {
  max-width: 500px;
}

.feature-card-newsletter .feature-device-newsletter {
  width: min(100%, 500px);
  justify-self: center;
}

.feature-kicker {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-lead {
  color: var(--ink) !important;
  font-size: 18px;
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #46545a;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.feature-device {
  display: flex;
  justify-content: center;
  margin: 0;
}

.feature-device-thanks {
  position: relative;
  min-height: 430px;
  align-items: center;
  justify-content: flex-start;
  padding-right: 54px;
}

.feature-device .phone-frame {
  width: min(100%, 236px);
  padding: 10px;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 26px;
  background: #f8fbfb;
  box-shadow:
    14px 16px 34px rgba(29, 56, 63, 0.14),
    -8px -8px 22px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.feature-device .phone-frame::before {
  top: 10px;
  width: 34px;
  height: 4px;
  background: #dce6e8;
}

.feature-device .phone-frame img {
  object-fit: contain;
  border-radius: 17px;
}

.feature-phone-main {
  z-index: 1;
  width: 216px !important;
}

.feature-phone-sub {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 2;
  width: 174px !important;
  transform: rotate(3deg);
}

.feature-phone-sub::before {
  width: 26px !important;
}

.feature-device-voice {
  position: relative;
  min-height: 410px;
  align-items: center;
  justify-content: flex-start;
  padding-right: 70px;
}

.feature-voice-phone {
  z-index: 1;
  width: 210px !important;
}

.voice-card-preview {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 2;
  width: min(100%, 300px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 12px;
  background: #f8fbfb;
  box-shadow:
    16px 18px 38px rgba(29, 56, 63, 0.12),
    -8px -8px 22px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.voice-card-preview img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: var(--paper);
}

.feature-device-newsletter {
  position: relative;
  min-height: 360px;
  align-items: center;
  justify-content: flex-start;
}

.feature-browser-preview {
  width: min(100%, 430px);
  height: 245px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    16px 18px 38px rgba(29, 56, 63, 0.12),
    -8px -8px 22px rgba(255, 255, 255, 0.9);
}

.feature-browser-preview .browser-screen {
  height: calc(100% - 30px);
}

.feature-browser-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.feature-newsletter-phone {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 160px !important;
  transform: rotate(3deg);
}

.support-feature-block {
  margin-top: 74px;
}

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

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

.support-feature-grid article {
  grid-template-rows: auto auto auto auto;
  align-items: start;
  padding: 24px;
}

.support-feature-grid article>p:not(.feature-lead) {
  min-height: 205px;
}

.support-feature-visual {
  align-self: center;
  margin: 22px 0 0;
}

.support-feature-phone {
  display: flex;
  justify-content: center;
}

.support-phone-frame {
  width: min(100%, 132px);
  padding: 6px;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 20px;
  background: #f8fbfb;
  box-shadow:
    9px 11px 24px rgba(29, 56, 63, 0.12),
    -6px -6px 18px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.support-phone-frame img {
  display: block;
  width: 100%;
  border-radius: 15px;
  background: var(--paper);
}

.support-feature-browser {
  height: 132px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    10px 12px 26px rgba(29, 56, 63, 0.1),
    -6px -6px 18px rgba(255, 255, 255, 0.9);
}

.support-feature-browser .browser-bar {
  height: 20px;
  padding: 0 8px;
  gap: 5px;
}

.support-feature-browser .browser-bar span {
  width: 6px;
  height: 6px;
}

.support-feature-browser .browser-screen {
  height: calc(100% - 20px);
}

.support-feature-browser img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.inhouse-usecase-section {}

.usecase-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.usecase-card-visual {
  margin: auto 8px 0;
  padding-top: 22px;
}

.usecase-card-visual img {
  display: block;
  width: 86%;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: var(--paper);
  object-fit: cover;
  object-position: center;
}

.inhouse-case-section {
  background: #f4fbfb;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.proof-grid article {
  padding: 28px;
  border: 1px solid rgba(32, 173, 182, 0.22);
  border-radius: 8px;
  background: var(--paper);
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--aqua-dark);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.proof-grid strong span {
  margin-left: 4px;
  font-size: 16px;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.case-story-grid article {
  padding: 30px;
}

.inhouse-pricing-section {}

.pricing-layout {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: 24px;
  margin-right: auto;
  margin-left: auto;
}

.pricing-card,
.price-example-card {
  padding: 32px;
}

.price-zero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
}

.price-zero span,
.price-row span {
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.price-zero strong {
  font-size: 44px;
  line-height: 1;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-row strong {
  color: var(--orange-dark);
  font-size: 19px;
  line-height: 1.45;
}

.pricing-card .note {
  color: var(--muted);
}

.price-example-card h3 {
  margin-bottom: 24px;
}

.price-example-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.price-example-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.price-example-card dt {
  color: var(--muted);
  font-weight: 800;
}

.price-example-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.inhouse-flow-section {
  max-width: none;
  background: #fff7d8;
}

.inhouse-flow-section>.section-heading,
.inhouse-flow-section>.step-list {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.step-list article {
  position: relative;
  padding: 24px 20px;
}

.step-list article:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -12px;
  z-index: 1;
  width: 22px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--orange);
  font-weight: 900;
}

.step-list h3 {
  font-size: 18px;
}

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

.faq-list details {
  padding: 12px 24px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--aqua-dark);
  border-bottom: 2px solid var(--aqua-dark);
  content: "";
  transform: rotate(45deg);
}

.faq-list details[open] summary::after {
  transform: translateY(3px) rotate(225deg);
}

.faq-list p {
  margin: 6pxpx 0 22px;
}

.inhouse-cta-section {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(244, 91, 43, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(32, 173, 182, 0.2), transparent 34%),
    #f4fbfb;
}

.inhouse-cta-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 62px clamp(24px, 5vw, 80px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: var(--shadow);
}

.inhouse-cta-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.inhouse-cta-panel .button-primary {
  margin-top: 20px;
}

.email-fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.email-fallback button {
  appearance: none;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--aqua-dark);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.email-fallback button:hover {
  border-color: rgba(32, 173, 182, 0.34);
  background: #f4fbfb;
}

.email-fallback small {
  display: none;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.email-fallback small:not(:empty) {
  display: inline-block;
  min-width: 82px;
}

.articles-section,
.article-list-hero,
.related-article-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.92);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(24, 32, 37, 0.08);
}

.article-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.article-card figure {
  display: grid;
  place-items: center;
  min-height: 214px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 173, 182, 0.14), transparent 50%),
    linear-gradient(315deg, rgba(242, 211, 90, 0.16), transparent 42%),
    #f8fbfb;
}

.article-card img {
  width: min(138px, 34vw);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(24, 32, 37, 0.16));
}

.article-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.article-card h2,
.article-card h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 26px);
}

.article-card div > p:not(.article-meta) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-read-more {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--aqua-dark);
  font-size: 14px;
  font-weight: 900;
}

.article-read-more::after {
  content: " ->";
}

.article-meta,
.article-meta-row,
.breadcrumb {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--aqua-dark);
}

.article-meta span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(32, 173, 182, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(32, 173, 182, 0.08);
  color: var(--aqua-dark);
  font-size: 12px;
  line-height: 1;
}

.article-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 76px clamp(20px, 5vw, 52px) 120px;
}

.article-hero {
  max-width: 860px;
  margin: 0 auto 36px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.breadcrumb a:hover {
  color: var(--aqua-dark);
}

.article-hero h1 {
  max-width: 880px;
  font-size: clamp(32px, 4.7vw, 54px);
  line-height: 1.22;
}

.article-lead {
  max-width: 820px;
  color: #314149;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.article-main-image {
  display: grid;
  place-items: center;
  max-width: 860px;
  min-height: 360px;
  margin: 0 auto 56px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(112deg, rgba(242, 211, 90, 0.2) 0 28%, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 22px 60px rgba(24, 32, 37, 0.1);
}

.article-main-image img {
  width: min(220px, 48vw);
  filter: drop-shadow(0 20px 32px rgba(24, 32, 37, 0.18));
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 64px;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: clamp(24px, 3vw, 34px);
}

.article-body h3 {
  margin-top: 44px;
  font-size: clamp(21px, 2.3vw, 27px);
}

.article-body p,
.article-body li {
  color: #334249;
  font-size: 16px;
  font-weight: 650;
  line-height: 2;
}

.article-body ul {
  display: grid;
  gap: 8px;
  padding-left: 1.3em;
  margin: 18px 0 28px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--aqua);
  border-radius: 0 8px 8px 0;
  background: #f7fbfb;
}

.article-body blockquote p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.article-cta {
  max-width: 820px;
  margin: 72px auto 0;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(220, 229, 231, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 173, 182, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(124, 181, 78, 0.12), transparent 38%),
    var(--paper);
  box-shadow: 0 18px 50px rgba(24, 32, 37, 0.08);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.reveal.is-visible {
  animation: cardIn 0.62s var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1) both;
}



@media (max-width: 640px) {
  .reveal {
    transform: translate3d(0, 6px, 0);
    transition:
      opacity 0.65s var(--reveal-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.65s var(--reveal-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: none;
  }

  .site-header {
    backdrop-filter: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    width: auto;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border: 0 solid rgba(220, 229, 231, 0);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 52px rgba(24, 32, 37, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }

  .site-header.is-nav-open .site-nav {
    max-height: 420px;
    border-width: 1px;
    border-color: rgba(220, 229, 231, 0.92);
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .inhouse-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    justify-self: start;
  }

  .inhouse-hero-copy {
    justify-self: start;
  }

  .hero-visual {
    min-height: 500px;
    max-width: none;
  }

  .inhouse-hero-visual {
    width: 100%;
    max-width: none;
    min-height: 560px;
  }

  .inhouse-hero-screen-main {
    left: 12%;
  }

  .inhouse-hero-screen-pc {
    right: 0;
    bottom: 70px;
    width: min(84vw, 560px);
  }

  .inhouse-hero-screen-news {
    right: 6%;
  }

  .inhouse-hero-screen-voice {
    left: 0;
    bottom: 34px;
    width: min(44vw, 260px);
  }

  .inhouse-hero-screen-post {
    right: 24%;
    bottom: 4px;
    width: 118px;
    height: 218px;
  }

  .inhouse-about-layout {
    grid-template-columns: 1fr;
  }

  .inhouse-about-visual {
    max-width: 720px;
  }

  .screen-card-pc {
    width: min(82vw, 560px);
  }

  .screen-card-news {
    left: 4%;
  }

  .screen-card-thanks {
    left: 32%;
  }

  .screen-card-guest {
    right: 6%;
  }

  .support-section,
  .strength-lead {
    grid-template-columns: 1fr;
  }

  .support-section {
    padding-right: clamp(20px, 5vw, 52px);
    padding-left: clamp(20px, 5vw, 52px);
  }

  .support-copy,
  .support-illustration {
    grid-column: auto;
  }

  .support-illustration {
    max-width: 680px;
  }

  .issue-grid,
  .product-grid,
  .effect-grid,
  .strength-grid,
  .service-grid,
  .inhouse-card-grid,
  .support-feature-grid,
  .proof-grid,
  .case-story-grid,
  .pricing-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .primary-feature-card,
  .feature-card-thanks,
  .feature-card-voice,
  .feature-card-newsletter,
  .primary-feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .primary-feature-card:nth-child(even) .primary-feature-copy,
  .primary-feature-card:nth-child(even) .feature-device {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-device-thanks {
    width: min(100%, 400px);
    min-height: 410px;
    justify-self: center;
    padding-right: 48px;
  }

  .feature-device-voice {
    width: min(100%, 430px);
    justify-self: center;
  }

  .feature-device-newsletter {
    width: min(100%, 500px);
    justify-self: center;
  }

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

  .support-feature-browser {
    height: 150px;
  }

  .support-feature-grid article {
    grid-template-rows: auto auto auto minmax(170px, 1fr);
  }

  .support-feature-grid article>p:not(.feature-lead) {
    min-height: 0;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .site-nav {
    gap: 0;
    font-size: 12px;
  }

  .section,
  .section-band {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 31px;
  }

  .inhouse-hero {
    padding-top: 44px;
  }

  .product-logo-lockup {
    gap: 5px;
  }

  .spotlights-wordmark {
    height: 35px;
  }

  .inhouse-wordmark {
    height: 18px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .inhouse-hero-visual {
    min-height: 520px;
  }

  .inhouse-hero-screen-main {
    top: 20px;
    left: 12%;
    width: 150px;
    height: 282px;
  }

  .inhouse-hero-screen-pc {
    right: 3%;
    bottom: 96px;
    width: 86%;
    height: 186px;
  }

  .inhouse-hero-screen-news {
    top: 85px;
    right: 8%;
    width: 104px;
    height: 184px;
  }

  .inhouse-hero-screen-voice {
    left: 3%;
    bottom: 44px;
    width: 188px;
    padding: 6px;
  }

  .inhouse-hero-screen-post {
    right: 10%;
    bottom: 23px;
    width: 90px;
    height: 168px;
  }

  .screen-card-pc {
    top: 42px;
    width: 94%;
    right: 10px;
    height: 208px;
  }

  .screen-card-news {
    left: 0;
    bottom: 74px;
    width: 136px;
    height: 226px;
  }

  .screen-card-thanks {
    left: 33%;
    bottom: 40px;
    width: 138px;
    height: 230px;
  }

  .screen-card-guest {
    right: 0;
    bottom: 83px;
    width: 124px;
    height: 210px;
  }

  .phone-shell {
    padding: 8px;
    border-radius: 20px;
  }

  .phone-shell img {
    border-radius: 13px;
  }

  .inhouse-hero-screen-post .phone-shell {
    padding: 5px;
    border-radius: 15px;
  }

  .inhouse-hero-screen-post .phone-shell::before {
    width: 18px;
    height: 2px;
    margin-bottom: 4px;
  }

  .inhouse-hero-screen-post .phone-shell img {
    height: calc(100% - 6px);
    border-radius: 9px;
  }

  .issue-grid,
  .product-grid,
  .effect-grid,
  .strength-grid,
  .service-grid,
  .inhouse-card-grid,
  .support-feature-grid,
  .proof-grid,
  .case-story-grid,
  .pricing-layout,
  .step-list {
    grid-template-columns: 1fr;
  }

  .issue-grid article {
    min-height: auto;
  }

  .issue-illustration img {
    height: 210px;
  }

  .product-card {
    min-height: auto;
    padding: 26px;
  }

  .phone-frame {
    width: min(48%, 150px);
  }

  .product-preview-row {
    grid-template-columns: 1fr;
  }

  .product-screen {
    justify-content: center;
  }

  .product-card .product-tags {
    margin-top: 0;
  }

  .primary-feature-card,
  .pricing-card,
  .price-example-card,
  .inhouse-card-grid article,
  .support-feature-grid article,
  .case-story-grid article {
    padding: 24px;
  }

  .feature-device .phone-frame {
    width: min(58vw, 190px);
  }

  .feature-device-thanks {
    min-height: 310px;
    padding-right: 28px;
  }

  .feature-phone-main {
    width: 158px !important;
  }

  .feature-phone-sub {
    bottom: 12px;
    width: 112px !important;
  }

  .feature-device-voice {
    display: flex;
    position: relative;
    width: min(100%, 292px);
    min-height: 280px;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    margin-top: 18px;
    padding-right: 46px;
  }

  .feature-voice-phone {
    width: 142px !important;
  }

  .voice-card-preview {
    position: absolute;
    right: -8px;
    bottom: 10px;
    width: 182px;
    padding: 8px;
  }

  .feature-device-newsletter {
    min-height: 300px;
  }

  .feature-browser-preview {
    width: min(78vw, 310px);
    height: 176px;
  }

  .feature-newsletter-phone {
    width: 118px !important;
  }

  .support-feature-visual {
    margin-top: 18px;
  }

  .support-phone-frame {
    width: 136px;
  }

  .support-feature-browser {
    height: 138px;
  }

  .price-zero,
  .price-row,
  .price-example-card div {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-zero strong {
    font-size: 36px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.guest-page {
  --guest-primary: #f45b2b;
  --guest-soft: #fff7f2;
  --guest-signal: #f2d35a;
  --guest-positive: #20adb6;
  --guest-growth: #7cb54e;
}

.guest-hero {
  display: grid;
  min-height: min(78vh, 720px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(124, 181, 78, 0.2) 0 30%, transparent 30%),
    linear-gradient(180deg, #f8fff4 0%, #f6fcfc 100%);
}

.guest-hero-copy {
  position: relative;
  z-index: 2;
}

.guest-logo-lockup {
  gap: 10px;
}

.guest-wordmark {
  height: 23px;
}

.guest-hero h1 {
  max-width: 620px;
  margin: 24px 0 18px;
  font-size: clamp(30px, 3.7vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.guest-hero-lead {
  max-width: 680px;
  margin: 0 0 16px;
  color: #263238;
  font-size: clamp(20px, 2.3vw, 29px);
  font-weight: 900;
  line-height: 1.6;
}

.guest-hero-sub {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.guest-safety-note {
  max-width: 660px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 91, 43, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(244, 91, 43, 0.08);
}

.guest-safety-note strong,
.guest-safety-note span {
  display: block;
}

.guest-safety-note strong {
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: 14px;
}

.guest-safety-note span {
  color: #39474d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.guest-hero-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 548px;
  justify-self: center;
}

.guest-hero-screen,
.guest-hero-card {
  position: absolute;
  margin: 0;
}

.guest-hero-screen-browser {
  right: 0;
  bottom: 72px;
  z-index: 1;
  width: min(45vw, 500px);
  height: 268px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.guest-hero-screen-browser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.guest-hero-screen-phone {
  top: 36px;
  left: 24%;
  z-index: 4;
  width: 224px;
  height: 424px;
  transform: rotate(-4deg);
}

.guest-hero-screen-phone .phone-shell,
.guest-feature-phone .phone-shell {
  overflow: hidden;
}

.guest-hero-screen-phone .phone-shell img,
.guest-feature-phone .phone-shell img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.guest-hero-card {
  z-index: 5;
  width: 230px;
  padding: 16px;
  border: 1px solid rgba(220, 229, 231, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    16px 18px 40px rgba(29, 56, 63, 0.15),
    -8px -8px 22px rgba(255, 255, 255, 0.9);
}

.guest-hero-card p {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.guest-hero-card div {
  display: grid;
  gap: 8px;
}

.guest-hero-card span {
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f4fbfb;
  color: #39474d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.reaction-card {
  left: 0;
  bottom: 76px;
  transform: rotate(3deg);
}

.reaction-card span {
  background: #eefafa;
  color: var(--aqua-dark);
}

.moyari-card {
  right: 12%;
  bottom: 8px;
  transform: rotate(-4deg);
}

.moyari-card span {
  background: #fff6ec;
  color: var(--orange-dark);
}

.guest-about-section,
.guest-moyari-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.82fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.guest-about-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.08fr);
  gap: clamp(32px, 4.6vw, 64px);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.guest-about-copy h2,
.guest-moyari-copy h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.22;
}

.guest-about-copy p:not(.eyebrow),
.guest-moyari-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.guest-summary-line {
  position: relative;
  display: inline;
  margin-top: 22px !important;
  color: var(--ink) !important;
  font-size: 22px !important;
  line-height: 1.9;
  font-weight: 900 !important;
  background:
    linear-gradient(90deg,
      rgba(124, 181, 78, 0.34),
      rgba(32, 173, 182, 0.3) 52%,
      rgba(244, 91, 43, 0.24)) 0 88% / 100% 0.56em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.routing-diagram {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.routing-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.guest-problem-section,
.guest-feature-section,
.guest-comparison-section,
.guest-case-section,
.guest-faq-section {
  max-width: none;
}

.guest-problem-section {
  background: #f7fbfb;
}

.guest-feature-section {
  background: #eef8ea;
}

.guest-comparison-section,
.guest-faq-section {
  background: #fff7f2;
}

.guest-case-section {
  background: #f6fbfb;
}

.guest-problem-section>.section-heading,
.guest-problem-section>.guest-card-grid,
.guest-feature-section>.section-heading,
.guest-feature-section>.guest-primary-features,
.guest-feature-section>.support-feature-block,
.guest-comparison-section>.section-heading,
.guest-comparison-section>.comparison-table,
.guest-comparison-section>.comparison-close,
.guest-case-section>.section-heading,
.guest-case-section>.proof-grid,
.guest-case-section>.case-story-grid,
.guest-faq-section>.section-heading,
.guest-faq-section>.faq-list {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.guest-card-grid article,
.guest-feature-card,
.moyari-demo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.guest-card-grid article {
  padding: 25px;
}

.guest-card-grid h3 {
  margin-top: 0;
  font-size: 20px;
}

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

.guest-value-grid article:nth-child(1) .feature-kicker {
  color: var(--aqua-dark);
}

.guest-value-grid article:nth-child(2) .feature-kicker {
  color: var(--orange-dark);
}

.guest-value-grid article:nth-child(3) .feature-kicker {
  color: var(--green-dark);
}

.guest-value-grid article {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  border-top: 5px solid transparent;
}

.guest-value-grid article:nth-child(1) {
  border-top-color: var(--guest-positive);
}

.guest-value-grid article:nth-child(2) {
  border-top-color: var(--guest-primary);
}

.guest-value-grid article:nth-child(3) {
  border-top-color: var(--guest-growth);
}

.guest-value-grid .feature-kicker {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mini-tags span {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfb;
  color: #39474d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.mini-tags span::before {
  content: "#";
  margin-right: 2px;
  color: var(--aqua-dark);
}

.guest-primary-features {
  display: grid;
  gap: 24px;
}

.guest-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
}

.guest-feature-card:nth-child(even) {
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 0.82fr);
}

.guest-feature-card:nth-child(even) .guest-feature-copy {
  order: 2;
}

.guest-feature-card:nth-child(even) .guest-feature-visual {
  order: 1;
}

.guest-feature-card h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
}

.guest-feature-copy>p:not(.feature-kicker):not(.feature-lead) {
  color: var(--muted);
  font-weight: 600;
}

.guest-feature-visual {
  justify-self: center;
}

.guest-feature-phone {
  width: min(100%, 220px);
  height: 424px;
}

.reaction-panel {
  width: min(100%, 286px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 12px;
  background: #f8fbfb;
  box-shadow:
    14px 18px 36px rgba(29, 56, 63, 0.12),
    -8px -8px 22px rgba(255, 255, 255, 0.88);
}

.reaction-panel::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #cfd8dc;
}

.reaction-panel img {
  width: 100%;
  border-radius: 18px;
}

.message-mock {
  overflow: hidden;
  width: min(100%, 380px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    14px 18px 36px rgba(29, 56, 63, 0.1),
    -8px -8px 22px rgba(255, 255, 255, 0.88);
}

.message-mock img {
  display: block;
  width: 100%;
  height: auto;
}

.message-bubble {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.message-bubble.guest {
  justify-self: start;
  border-bottom-left-radius: 4px;
  background: var(--paper);
  color: #39474d;
  box-shadow: 0 10px 24px rgba(29, 56, 63, 0.1);
}

.message-bubble.staff {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: #fff1e8;
  color: var(--orange-dark);
}

.moyari-mini-ui {
  width: min(100%, 360px);
}

.moyari-ui {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(244, 91, 43, 0.18);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 44px rgba(244, 91, 43, 0.1);
}

.moyari-ui h4,
.moyari-ui h3,
.moyari-ui p {
  margin: 0;
}

.moyari-ui p {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.moyari-ui h4,
.moyari-ui h3 {
  font-size: 18px;
  line-height: 1.5;
}

.moyari-ui button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #f0d8cc;
  border-radius: 6px;
  color: #39474d;
  background: #fffaf6;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.guest-support-grid article {
  min-height: 260px;
}

.guest-moyari-section {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(244, 91, 43, 0.12), transparent 35%),
    #fbfdfd;
}

.guest-moyari-section>.guest-moyari-copy,
.guest-moyari-section>.moyari-demo-card {
  max-width: var(--max);
}

.moyari-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.moyari-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(244, 91, 43, 0.2);
  border-radius: 4px;
  background: var(--paper);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.moyari-demo-card {
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.moyari-ui-large {
  box-shadow: none;
}

.moyari-ui label {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  color: #39474d;
  font-size: 13px;
  font-weight: 900;
}

.moyari-ui textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  font: inherit;
}

.moyari-ui small {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 0.72fr minmax(0, 1fr) minmax(0, 1fr);
}

.comparison-head span,
.comparison-row strong,
.comparison-row p {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-head span {
  background: #f8fbfb;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.comparison-head span:nth-child(2) {
  background: #e7eef0;
  color: #39474d;
}

.comparison-head span:nth-child(3) {
  background: var(--guest-primary);
  color: var(--paper);
}

.comparison-row strong {
  font-size: 15px;
}

.comparison-row p {
  color: var(--muted);
  font-weight: 700;
}

.comparison-head span+span,
.comparison-row strong+p,
.comparison-row p+p {
  border-left: 1px solid var(--line);
}

.comparison-head span:last-child,
.comparison-row p:last-child {
  background: #fff2e9;
  color: #5d3020;
}

.comparison-row p:nth-child(2) {
  background: #f7fafb;
}

.comparison-row:last-child strong,
.comparison-row:last-child p {
  border-bottom: 0;
}

.comparison-close {
  display: table;
  margin-top: 30px !important;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.9;
  text-align: center;
  background:
    linear-gradient(90deg,
      rgba(124, 181, 78, 0.34),
      rgba(32, 173, 182, 0.3) 52%,
      rgba(244, 91, 43, 0.24)) 0 88% / 100% 0.56em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.guest-usecase-grid article {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.guest-usecase-grid .mini-tags {
  margin-top: auto;
  padding-top: 10px;
}

.guest-proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.guest-proof-grid article {
  min-height: 190px;
}

.guest-proof-grid strong {
  font-size: clamp(32px, 4vw, 48px);
}

.case-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.store-price {
  display: grid;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.store-price span,
.store-price em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.store-price strong {
  color: var(--orange);
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.1;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.included-list li {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8fbfb;
  font-size: 13px;
  font-weight: 900;
}

.flow-note {
  max-width: var(--max);
  margin: 26px auto 0;
  padding: 18px 20px;
  border-radius: 4px;
  background: var(--guest-soft);
  color: #39474d;
  font-weight: 800;
}

.guest-cta-section .inhouse-cta-panel {
  background:
    linear-gradient(135deg, rgba(244, 91, 43, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(32, 173, 182, 0.13), transparent 38%),
    var(--paper);
}

@media (max-width: 980px) {

  .guest-hero,
  .guest-about-section,
  .guest-moyari-section {
    grid-template-columns: 1fr;
  }

  .guest-hero-copy {
    justify-self: start;
  }

  .guest-hero-visual {
    min-height: 560px;
    width: 100%;
    max-width: none;
  }

  .guest-hero-screen-phone {
    left: 20%;
  }

  .guest-hero-screen-browser {
    right: 0;
    width: min(86vw, 560px);
  }

  .guest-about-section,
  .guest-moyari-section {
    padding-right: clamp(20px, 5vw, 52px);
    padding-left: clamp(20px, 5vw, 52px);
  }

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

  .guest-feature-card,
  .guest-feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .guest-feature-card:nth-child(even) .guest-feature-copy,
  .guest-feature-card:nth-child(even) .guest-feature-visual {
    order: initial;
  }

  .guest-feature-visual {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .routing-diagram {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .route-source {
    min-height: 0;
    border-radius: 8px;
  }

  .route-branch {
    display: none;
  }

  .comparison-head {
    display: none;
  }

  .comparison-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 14px 34px rgba(29, 56, 63, 0.08);
  }

  .comparison-row strong {
    padding: 0;
    border-bottom: 0;
    border-left: 0 !important;
  }

  .comparison-row p {
    padding: 0;
    border-bottom: 0;
  }

  .comparison-row strong {
    background: transparent;
    color: var(--ink);
    font-size: 16px;
  }

  .comparison-row p {
    position: relative;
    min-height: 94px;
    padding: 34px 14px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #39474d;
  }

  .comparison-row p:nth-child(2) {
    background: #f7fafb;
  }

  .comparison-row p:nth-child(3) {
    border-color: rgba(244, 91, 43, 0.2);
    background: #fff2e9;
    color: #5d3020;
  }

  .comparison-row p::before {
    position: absolute;
    top: 10px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 2px 7px;
    border-radius: 999px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
  }

  .comparison-row p:nth-child(2)::before {
    content: "アンケート";
    background: #e7eef0;
    color: #526067;
  }

  .comparison-row p:nth-child(3)::before {
    content: "for guest";
    background: var(--guest-primary);
    color: var(--paper);
  }

  .comparison-close {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guest-wordmark {
    height: 18px;
  }

  .guest-hero {
    min-height: auto;
  }

  .guest-hero h1 {
    font-size: 31px;
  }

  .guest-hero-visual {
    min-height: 430px;
  }

  .guest-hero-screen-phone {
    top: 8px;
    left: 7%;
    width: 154px;
    height: 292px;
  }

  .guest-hero-screen-browser {
    right: 2%;
    bottom: 186px;
    width: 86%;
    height: 184px;
  }

  .guest-hero-card {
    width: 176px;
    padding: 12px;
  }

  .guest-hero-card span {
    font-size: 11px;
  }

  .reaction-card {
    left: 2%;
    bottom: 46px;
  }

  .moyari-card {
    right: 2%;
    bottom: 30px;
  }

  .guest-card-grid,
  .guest-proof-grid,
  .included-list {
    grid-template-columns: 1fr;
  }

  .guest-card-grid article,
  .guest-feature-card {
    padding: 24px;
  }

  .guest-feature-phone {
    width: 166px;
    height: 318px;
  }

  .reaction-panel {
    width: 214px;
  }

  .moyari-ui {
    padding: 18px;
  }

  .guest-usecase-grid article {
    min-height: auto;
  }

  .email-fallback {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .email-fallback button {
    margin-right: auto;
    margin-left: auto;
  }

  .email-fallback small {
    min-width: 0;
  }

  .article-layout {
    padding: 48px 20px 84px;
  }

  .article-hero {
    margin-bottom: 28px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .article-hero h1 {
    font-size: 30px;
    line-height: 1.34;
  }

  .article-lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-main-image {
    min-height: 280px;
    margin-bottom: 42px;
  }

  .article-main-image img {
    width: min(176px, 52vw);
  }

  .article-body h2 {
    margin-top: 48px;
    font-size: 25px;
  }

  .article-body h3 {
    margin-top: 34px;
    font-size: 21px;
  }

  .article-body p,
  .article-body li {
    font-size: 15px;
    line-height: 1.95;
  }

  .article-body blockquote {
    padding: 18px 20px;
  }

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

  .article-card figure {
    min-height: 220px;
  }

  .article-card img {
    width: min(168px, 48vw);
  }

  .article-card div {
    padding: 22px;
  }

  .article-cta {
    margin-top: 56px;
  }

  .guest-proof-grid article {
    min-height: auto;
  }
}
