.cl-poc {
  --cl-green: #afc70f;
  --cl-green-deep: #73860b;
  --cl-lime: #c6d96b;
  --cl-blue: #a8c4e8;
  --cl-mint: #6fcfae;
  --cl-apricot: #f79b55;
  --cl-ink: #1e1e16;
  --cl-muted: #68685e;
  --cl-paper: #f7f6f1;
  --cl-illustration-canvas: #faf9f5;
  --cl-line: rgba(30, 30, 22, 0.12);
  background: #fff;
  color: var(--cl-ink);
  overflow: hidden;
}

.cl-poc *,
.cl-poc *::before,
.cl-poc *::after {
  box-sizing: border-box;
}

.cl-poc h1,
.cl-poc h2,
.cl-poc h3,
.cl-poc p,
.cl-poc figure {
  margin: 0;
}

.cl-container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.cl-hero {
  position: relative;
  min-height: 820px;
  padding: 210px 0 130px;
  background:
    radial-gradient(circle at 88% 22%, rgba(168, 196, 232, 0.24), transparent 30%),
    linear-gradient(180deg, #fafaf7 0%, #fff 86%);
}

.cl-hero::after {
  position: absolute;
  right: -120px;
  bottom: 70px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(175, 199, 15, 0.18);
  border-radius: 50%;
  content: '';
}

.cl-context-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 60px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(30, 30, 22, 0.1);
}

.cl-context-nav a {
  position: relative;
  color: var(--cl-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.cl-context-nav a:hover,
.cl-context-nav a[aria-current='page'] {
  color: var(--cl-ink);
}

.cl-context-nav a[aria-current='page']::after {
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  height: 2px;
  background: var(--cl-green);
  content: '';
}

.cl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
}

.cl-kicker,
.cl-feature__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cl-green-deep) !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.13em;
}

.cl-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cl-green-deep) !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.08em;
}

.cl-hero__category::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cl-green);
  box-shadow: 0 0 0 6px rgba(175, 199, 15, 0.14);
  content: '';
}

.cl-hero h1 {
  margin-top: 20px;
  color: var(--cl-ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.cl-hero__catch {
  margin-top: 22px !important;
  color: var(--cl-ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(48px, 4.5vw, 60px);
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.055em;
}

.cl-hero__lead {
  max-width: 560px;
  margin-top: 34px !important;
  color: var(--cl-muted) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
  letter-spacing: 0.02em;
}

.cl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.cl-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.cl-button--primary {
  background: var(--cl-ink);
  color: #fff;
}

.cl-button--primary:hover {
  background: #38382e;
}

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

.cl-button--secondary:hover {
  border-color: rgba(30, 30, 22, 0.26);
  background: var(--cl-paper);
}

.cl-hero__note {
  margin-top: 24px !important;
  color: #85857b !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.cl-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.cl-hero__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 112%;
  max-width: none;
  transform: translateX(-4%);
  filter: drop-shadow(0 26px 38px rgba(56, 62, 31, 0.08));
  mix-blend-mode: darken;
}

.cl-hero__halo {
  position: absolute;
  top: 3%;
  right: -8%;
  bottom: 3%;
  left: 4%;
  border-radius: 48% 52% 44% 56% / 58% 42% 58% 42%;
  background: linear-gradient(135deg, rgba(198, 217, 107, 0.21), rgba(168, 196, 232, 0.24));
  filter: blur(2px);
}

.cl-product-preview {
  padding: 112px 0 128px;
  border-top: 1px solid rgba(30, 30, 22, 0.06);
  background: #fff;
}

.cl-product-preview__heading {
  max-width: none;
  margin-bottom: 64px;
}

.cl-poc .cl-product-preview__heading h2,
.cl-problems .cl-section-heading h2 {
  font-size: clamp(36px, 3.3vw, 42px);
  white-space: nowrap;
}

.cl-product-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 6vw, 76px);
}

.cl-product-preview__screen {
  overflow: hidden;
  border: 1px solid rgba(30, 30, 22, 0.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 72px rgba(43, 48, 23, 0.1);
}

.cl-product-preview__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.cl-product-preview__screen figcaption {
  padding: 14px 20px 16px;
  border-top: 1px solid rgba(30, 30, 22, 0.07);
  background: #fff;
  color: #85857b;
  font-size: 11px;
  line-height: 1.65;
  text-align: right;
}

.cl-product-preview__copy h3 {
  color: var(--cl-ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.cl-product-preview__copy > p {
  margin-top: 28px !important;
  color: var(--cl-muted) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
}

.cl-product-preview__copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cl-product-preview__copy li {
  position: relative;
  padding-left: 24px;
  color: var(--cl-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.cl-product-preview__copy li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cl-green);
  box-shadow: 0 0 0 5px rgba(175, 199, 15, 0.12);
  content: '';
}

.cl-section-heading h2 {
  margin-top: 18px;
  color: var(--cl-ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.045em;
}

.cl-section-heading > p:last-child {
  color: var(--cl-muted) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.95 !important;
}

.cl-problems {
  padding: 140px 0;
  background: #f1f2ee;
}

.cl-section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.cl-problems .cl-section-heading--center {
  max-width: none;
}

.cl-section-heading--center .cl-kicker {
  justify-content: center;
}

.cl-section-heading--center > p:last-child {
  margin-top: 24px !important;
}

.cl-problem-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1160px);
  margin: 60px auto 0;
  padding: 16px;
  border: 1px solid rgba(30, 30, 22, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 30px 90px rgba(32, 32, 26, 0.06);
}

.cl-problem-card {
  overflow: hidden;
  border: 1px solid rgba(30, 30, 22, 0.08);
  border-radius: 24px;
  background: #fff;
  color: var(--cl-ink);
  box-shadow: 0 18px 52px rgba(32, 32, 26, 0.06);
}

.cl-problem-card figure {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: #fff;
}

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

.cl-problem-card__body {
  padding: 30px 32px 36px;
}

.cl-problem-card h3 {
  color: var(--cl-ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.cl-problem-card h3 span,
.cl-feature h3 span {
  display: block;
}

.cl-problem-card__body p {
  margin-top: 18px !important;
  color: var(--cl-muted) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.9 !important;
}

.cl-features {
  padding: 176px 0 80px;
  background: var(--cl-illustration-canvas);
}

.cl-features__heading {
  margin-bottom: 112px;
}

.cl-feature-list {
  display: flex;
  flex-direction: column;
  gap: 144px;
}

.cl-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(64px, 9vw, 124px);
}

.cl-feature.is-reversed {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.15fr);
}

.cl-feature.is-reversed .cl-feature__media {
  order: 2;
}

.cl-feature__media {
  position: relative;
  overflow: visible;
  aspect-ratio: 3 / 2;
  background: transparent;
}

.cl-feature__media.is-mixed {
  background: transparent;
}

.cl-feature__media::before {
  content: none;
}

.cl-feature__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: darken;
}

.cl-feature__copy {
  max-width: 470px;
}

.cl-feature h3 {
  margin-top: 22px;
  color: var(--cl-ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.cl-feature__copy > p:last-child {
  margin-top: 28px !important;
  color: var(--cl-muted) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
}

@media (max-width: 1023px) {
  .cl-hero {
    min-height: auto;
    padding: 172px 0 104px;
  }

  .cl-hero__grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .cl-hero__copy {
    max-width: 720px;
  }

  .cl-hero__visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .cl-product-preview__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cl-product-preview__screen {
    max-width: 720px;
  }

  .cl-product-preview__copy {
    max-width: 680px;
  }

  .cl-problems,
  .cl-features {
    padding-top: 128px;
  }

  .cl-feature-list {
    gap: 112px;
  }

  .cl-feature,
  .cl-feature.is-reversed {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cl-feature.is-reversed .cl-feature__media {
    order: 0;
  }

  .cl-feature__copy {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .cl-container {
    width: min(100% - 32px, 1240px);
  }

  .cl-hero {
    padding: 142px 0 84px;
  }

  .cl-context-nav {
    gap: 8px 18px;
    margin-bottom: 42px;
    padding-bottom: 14px;
  }

  .cl-context-nav a {
    font-size: 12px;
  }

  .cl-context-nav a[aria-current='page']::after {
    bottom: -15px;
  }

  .cl-hero h1 {
    margin-top: 18px;
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .cl-hero__catch {
    margin-top: 18px !important;
    font-size: clamp(33px, 9.7vw, 44px);
    line-height: 1.3 !important;
  }

  .cl-hero__lead {
    margin-top: 24px !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  .cl-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
  }

  .cl-button {
    width: 100%;
  }

  .cl-hero__visual img {
    width: 124%;
    transform: translateX(-12%);
  }

  .cl-product-preview,
  .cl-problems,
  .cl-features {
    padding: 96px 0;
  }

  .cl-product-preview__screen {
    border-radius: 18px;
  }

  .cl-product-preview__screen figcaption {
    padding: 12px 14px 14px;
    text-align: left;
  }

  .cl-product-preview__heading {
    margin-bottom: 44px;
  }

  .cl-poc .cl-product-preview__heading h2,
  .cl-problems .cl-section-heading h2 {
    font-size: clamp(32px, 8.6vw, 38px);
    white-space: normal;
  }

  .cl-product-preview__grid {
    gap: 38px;
  }

  .cl-product-preview__copy h3 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .cl-product-preview__copy > p {
    margin-top: 22px !important;
    font-size: 14px !important;
    line-height: 1.95 !important;
  }

  .cl-section-heading h2 {
    font-size: clamp(34px, 9.6vw, 44px);
    line-height: 1.38;
  }

  .cl-problem-panel {
    grid-template-columns: 1fr;
    margin-top: 52px;
    padding: 10px;
    border-radius: 26px;
  }

  .cl-problem-card {
    border-radius: 20px;
  }

  .cl-problem-card__body {
    padding: 28px 24px 34px;
  }

  .cl-features__heading {
    margin-bottom: 72px;
  }

  .cl-feature-list {
    gap: 88px;
  }

  .cl-feature {
    gap: 34px;
  }

  .cl-feature__media {
    border-radius: 20px;
  }

  .cl-feature h3 {
    margin-top: 18px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .cl-feature__copy > p:last-child {
    margin-top: 22px !important;
    font-size: 14px !important;
    line-height: 1.95 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cl-poc *,
  .cl-poc *::before,
  .cl-poc *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Production feature-page screen illustrations
   These are intentionally schematic HTML mockups, not captures of the product. */
.cl-production-story {
  --cl-illustration-canvas: #f7f5f0;
  --cl-hero-canvas: #fbf8f4;
  isolation: isolate;
}

.cl-production-story .cl-hero {
  background: var(--cl-hero-canvas);
}

.cl-production-story.is-contacts {
  --cl-hero-canvas: #fbf7f4;
}

.cl-production-story.is-business-card {
  --cl-hero-canvas: #fcfaf6;
}

.cl-production-story.is-forms {
  --cl-hero-canvas: #fcf8f5;
}

.cl-production-story.is-events {
  --cl-hero-canvas: #faf8f4;
}

.cl-production-story.is-records {
  --cl-hero-canvas: #fbf8f3;
}

.cl-production-story.is-workflow {
  --cl-hero-canvas: #faf8f4;
}

.cl-production-story.is-analytics {
  --cl-hero-canvas: #f9f8f4;
}

.cl-production-story.is-investment {
  --cl-hero-canvas: #fbf8f2;
}

.cl-production-story .cl-hero__visual img {
  filter: none;
  mix-blend-mode: normal;
}

.cl-product-preview__copy h3 span {
  display: block;
}

.cl-screen-mock {
  display: flex;
  aspect-ratio: 3 / 2;
  min-height: 310px;
  flex-direction: column;
  overflow: hidden;
  background: #f7f8f3;
  color: #26271f;
  font-family: 'Noto Sans JP', sans-serif;
}

.cl-screen-mock__bar {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(30, 30, 22, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.cl-screen-mock__dots {
  display: flex;
  gap: 5px;
}

.cl-screen-mock__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d6d8d0;
}

.cl-screen-mock__dots i:first-child {
  background: #c9d75c;
}

.cl-screen-mock__badge {
  padding: 4px 8px;
  border: 1px solid rgba(115, 134, 11, 0.14);
  border-radius: 999px;
  background: #f5f7e9;
  color: #68750e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cl-mock {
  display: flex;
  min-height: 0;
  flex: 1;
}

.cl-mock__rail {
  display: flex;
  width: 46px;
  flex: 0 0 46px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-right: 1px solid rgba(30, 30, 22, 0.07);
  background: #fbfcf8;
}

.cl-mock__rail span {
  width: 15px;
  height: 15px;
  border: 1px solid #dfe2da;
  border-radius: 5px;
  background: #fff;
}

.cl-mock__rail .is-brand {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 7px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #afc70f;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.cl-mock__rail span.is-active {
  border-color: rgba(115, 134, 11, 0.3);
  background: #eaf0ba;
  box-shadow: 0 0 0 5px rgba(175, 199, 15, 0.08);
}

.cl-mock__surface {
  min-width: 0;
  flex: 1;
  padding: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at 85% 10%, rgba(168, 196, 232, 0.16), transparent 32%);
}

.cl-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.cl-mock__header > div {
  display: grid;
  gap: 2px;
}

.cl-mock__header b,
.cl-mock__panel-title b {
  font-size: 10px;
  line-height: 1.4;
}

.cl-mock__header small,
.cl-mock__panel small {
  color: #8a8c82;
  font-size: 6px;
  line-height: 1.4;
}

.cl-mock__button,
.cl-mock__status {
  border-radius: 999px;
  padding: 5px 9px;
  background: #202219;
  color: #fff;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.cl-mock__status {
  background: #f2f4dd;
  color: #6d7b14;
}

.cl-mock__status.is-open {
  background: #edf3fa;
  color: #54749a;
}

.cl-mock__panel {
  min-width: 0;
  border: 1px solid rgba(30, 30, 22, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(39, 43, 24, 0.05);
}

.cl-mock-contacts__grid,
.cl-mock-card__grid,
.cl-mock-forms__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 8px;
  min-height: calc(100% - 38px);
}

.cl-mock__list,
.cl-mock__detail,
.cl-mock-card__capture,
.cl-mock-card__fields,
.cl-mock-form__preview,
.cl-mock-form__queue {
  padding: 9px;
}

.cl-mock__filter,
.cl-mock__tabs,
.cl-mock__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cl-mock__filter span,
.cl-mock__tabs span,
.cl-mock__chips span,
.cl-mock__panel-title span {
  border-radius: 999px;
  padding: 3px 5px;
  background: #f4f5ef;
  color: #888b80;
  font-size: 5px;
}

.cl-mock__filter span:first-child,
.cl-mock__tabs .is-active {
  background: #eff3ce;
  color: #68750e;
}

.cl-mock__person-row,
.cl-mock-form__candidate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 7px;
}

.cl-mock__person-row.is-selected,
.cl-mock-form__candidate.is-selected {
  border-color: rgba(175, 199, 15, 0.22);
  background: #f8fae9;
}

.cl-mock__avatar {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(150deg, #d6e586, #90cfc0);
}

.cl-mock__avatar.is-large {
  width: 27px;
  height: 27px;
}

.cl-mock__person-row > span,
.cl-mock__profile > span,
.cl-mock-form__candidate > span {
  display: grid;
  gap: 3px;
}

.cl-mock__person-row b,
.cl-mock__profile b,
.cl-mock-form__candidate b {
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: #7d8076;
}

.cl-mock__person-row small,
.cl-mock__profile small,
.cl-mock-form__candidate small {
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: #d9dcd4;
}

.cl-mock__person-row em,
.cl-mock-form__candidate em {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b7ce31;
}

.cl-mock__profile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eceee8;
}

.cl-mock__tabs {
  margin-top: 8px;
}

.cl-mock__chips {
  margin-top: 10px;
}

.cl-mock__chips span {
  border-radius: 5px;
  background: #eef3f7;
  color: #61778d;
}

.cl-mock__timeline {
  display: flex;
  align-items: center;
  margin: 18px 5px 0;
}

.cl-mock__timeline i {
  width: 8px;
  height: 8px;
  border: 2px solid #afc70f;
  border-radius: 50%;
  background: #fff;
}

.cl-mock__timeline span {
  height: 2px;
  flex: 1;
  background: #dfe6ad;
}

.cl-mock__next-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  margin-top: 13px;
  padding: 8px;
  border-radius: 7px;
  background: #f7f9e9;
}

.cl-mock__next-action small {
  grid-column: 1 / -1;
}

.cl-mock__next-action b {
  width: 70%;
  height: 5px;
  border-radius: 99px;
  background: #cfd2c8;
}

.cl-mock__next-action em {
  width: 28px;
  height: 6px;
  border-radius: 99px;
  background: #afc70f;
}

.cl-mock-card__capture {
  display: grid;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.cl-mock-card__frame {
  position: relative;
  display: grid;
  aspect-ratio: 1.5;
  place-items: center;
  border: 1px dashed #a9b371;
  border-radius: 9px;
  background: #f8f9f4;
}

.cl-mock-card__frame span {
  width: 74%;
  height: 48%;
  border: 1px solid #dde0d5;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(37, 39, 27, 0.06);
}

.cl-mock-card__frame i,
.cl-mock-card__frame b {
  position: absolute;
  left: 22%;
  width: 12%;
  height: 4px;
  border-radius: 99px;
  background: #afc70f;
}

.cl-mock-card__frame i {
  top: 39%;
}

.cl-mock-card__frame b {
  top: 51%;
  width: 36%;
  background: #cfd2c8;
}

.cl-mock-card__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.cl-mock-card__fields label {
  display: grid;
  align-content: start;
  gap: 4px;
}

.cl-mock-card__fields label > span {
  width: 76%;
  height: 11px;
  border: 1px solid #e1e3dc;
  border-radius: 4px;
  background: #f9faf7;
}

.cl-mock-card__fields label > span.is-long {
  width: 92%;
}

.cl-mock-card__confirm {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  border-top: 1px solid #eceee8;
  font-size: 6px;
}

.cl-mock-card__confirm i {
  border-radius: 99px;
  padding: 5px 8px;
  background: #1f2118;
  color: #fff;
  font-style: normal;
}

.cl-mock__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.cl-mock__steps li {
  display: flex;
  align-items: center;
  color: #a0a297;
  font-size: 5px;
}

.cl-mock__steps li::after {
  width: 13px;
  height: 1px;
  margin: 0 3px;
  background: #dfe1da;
  content: '';
}

.cl-mock__steps li:last-child::after {
  content: none;
}

.cl-mock__steps .is-done,
.cl-mock__steps .is-current {
  color: #66740d;
  font-weight: 700;
}

.cl-mock__steps .is-current {
  border-radius: 99px;
  padding: 3px 5px;
  background: #eff3ce;
}

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

.cl-mock__panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.cl-mock-form__title {
  width: 56%;
  height: 6px;
  margin-bottom: 9px;
  border-radius: 99px;
  background: #8a8d83;
}

.cl-mock-form__field {
  display: grid;
  gap: 4px;
  margin-top: 6px;
}

.cl-mock-form__field small {
  width: 28%;
  height: 3px;
  border-radius: 99px;
  background: #d2d5cc;
}

.cl-mock-form__field span {
  height: 14px;
  border: 1px solid #e0e3da;
  border-radius: 4px;
  background: #fafbf8;
}

.cl-mock-form__field.is-large span {
  height: 25px;
}

.cl-mock-form__submit {
  display: block;
  width: 42%;
  height: 13px;
  margin-top: 9px;
  border-radius: 99px;
  background: #afc70f;
}

.cl-mock-form__queue {
  display: flex;
  flex-direction: column;
}

.cl-mock-form__candidate {
  margin-top: 5px;
  padding: 7px;
}

.cl-mock-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: auto;
  padding-top: 8px;
}

.cl-mock-form__actions span,
.cl-mock-form__actions i {
  border: 1px solid #e1e3dc;
  border-radius: 99px;
  padding: 5px 7px;
  color: #85877e;
  font-size: 5px;
}

.cl-mock-form__actions i {
  border-color: #1f2118;
  background: #1f2118;
  color: #fff;
  font-style: normal;
}

.cl-mock-event__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
  padding: 8px;
}

.cl-mock-event__summary > div {
  display: grid;
  gap: 4px;
  padding-right: 6px;
  border-right: 1px solid #eceee8;
}

.cl-mock-event__summary > div:last-child {
  border-right: 0;
}

.cl-mock-event__summary b {
  width: 66%;
  height: 6px;
  border-radius: 99px;
  background: #c8d661;
}

.cl-mock-event__funnel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 9px;
}

.cl-mock-event__funnel > div {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 7px;
  border-radius: 7px;
  background: #f6f7f2;
}

.cl-mock-event__funnel > div::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 6px;
  height: 1px;
  background: #becb67;
  content: '';
}

.cl-mock-event__funnel > div:last-child::after {
  content: none;
}

.cl-mock-event__funnel b {
  width: 62%;
  height: 7px;
  border-radius: 99px;
  background: #979b90;
}

.cl-mock-event__funnel span {
  width: 86%;
  height: 3px;
  border-radius: 99px;
  background: #daddd5;
}

.cl-mock-event__funnel .is-result {
  background: #f3f6d9;
}

.cl-mock-event__funnel .is-result b {
  background: #afc70f;
}

.cl-mock-event__lower {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  margin-top: 8px;
}

.cl-mock-event__metrics,
.cl-mock-event__notes {
  padding: 9px;
}

.cl-mock-event__metrics > div {
  display: flex;
  height: 42px;
  align-items: flex-end;
  gap: 5px;
  padding: 5px 4px 0;
  border-bottom: 1px solid #dfe2da;
}

.cl-mock-event__metrics i {
  width: 12%;
  border-radius: 3px 3px 0 0;
  background: #bfcf59;
}

.cl-mock-event__metrics i:nth-child(1) {
  height: 32%;
}
.cl-mock-event__metrics i:nth-child(2) {
  height: 52%;
  background: #9ebcdb;
}
.cl-mock-event__metrics i:nth-child(3) {
  height: 44%;
}
.cl-mock-event__metrics i:nth-child(4) {
  height: 72%;
  background: #80c9b5;
}
.cl-mock-event__metrics i:nth-child(5) {
  height: 88%;
}

.cl-mock-event__notes p {
  width: 92%;
  height: 4px;
  margin: 7px 0 0 !important;
  border-radius: 99px;
  background: #d7dad1;
}

.cl-mock-event__notes p:nth-of-type(2) {
  width: 66%;
}

.cl-mock-event__notes span {
  display: inline-block;
  margin-top: 11px;
  border-radius: 99px;
  padding: 4px 7px;
  background: #eff3ce;
  color: #66740d;
  font-size: 5px;
  font-weight: 700;
}

.cl-mock-records__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8px;
  min-height: calc(100% - 38px);
}

.cl-mock-records__list,
.cl-mock-records__detail,
.cl-mock-workflow__preview,
.cl-mock-workflow__guard {
  padding: 9px;
}

.cl-mock-records__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 7px;
}

.cl-mock-records__row.is-selected {
  border-color: rgba(175, 199, 15, 0.25);
  background: #f8fae9;
}

.cl-mock-records__row > i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9e68e, #8fcbbc);
}

.cl-mock-records__row > span {
  display: grid;
  gap: 3px;
}

.cl-mock-records__row b,
.cl-mock-records__row small,
.cl-mock-records__owner b {
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: #8e9187;
}

.cl-mock-records__row small {
  width: 42px;
  height: 3px;
  background: #d8dbd2;
}

.cl-mock-records__row em {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b4cb2d;
}

.cl-mock-records__answers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  padding: 9px 0;
}

.cl-mock-records__answers span {
  height: 27px;
  border: 1px solid #e1e4dc;
  border-radius: 6px;
  background: #fafbf8;
}

.cl-mock-records__answers .is-wide {
  grid-column: 1 / -1;
  height: 35px;
}

.cl-mock-records__owner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #eceee8;
}

.cl-mock-records__owner > div {
  display: grid;
  gap: 6px;
}

.cl-mock-records__owner b {
  width: 68%;
  background: #cdd0c7;
}

.cl-mock-records__owner em {
  width: fit-content;
  border-radius: 99px;
  padding: 3px 6px;
  background: #eff3ce;
  color: #66740d;
  font-size: 5px;
  font-style: normal;
}

.cl-mock-workflow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.cl-mock-workflow__steps li {
  border-radius: 99px;
  padding: 4px;
  background: #eef0e9;
  color: #979a90;
  font-size: 5px;
  text-align: center;
}

.cl-mock-workflow__steps .is-done,
.cl-mock-workflow__steps .is-current {
  background: #e9efbc;
  color: #66740d;
  font-weight: 700;
}

.cl-mock-workflow__steps .is-current {
  background: #202219;
  color: #fff;
}

.cl-mock-workflow__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8px;
}

.cl-mock-workflow__mail {
  display: grid;
  min-height: 104px;
  align-content: start;
  gap: 7px;
  padding: 10px;
  border: 1px solid #e4e6df;
  border-radius: 6px;
  background: #fafbf8;
}

.cl-mock-workflow__mail i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c3d65b;
}

.cl-mock-workflow__mail b,
.cl-mock-workflow__mail span {
  width: 74%;
  height: 4px;
  border-radius: 99px;
  background: #91958a;
}

.cl-mock-workflow__mail span {
  width: 94%;
  height: 3px;
  background: #d6d9d0;
}

.cl-mock-workflow__mail em {
  width: 42%;
  height: 12px;
  margin-top: 5px;
  border-radius: 99px;
  background: #afc70f;
}

.cl-mock-workflow__guard p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 7px 0 0 !important;
  color: #71746a;
  font-size: 6px;
}

.cl-mock-workflow__guard p i {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  background: #eef3c8;
  color: #6f7d16;
  font-size: 7px;
  font-style: normal;
}

.cl-mock-workflow__result {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 39px;
  margin-top: 9px;
  padding-top: 6px;
  border-top: 1px solid #eceee8;
}

.cl-mock-workflow__result small {
  margin-right: auto;
}

.cl-mock-workflow__result b {
  width: 12px;
  border-radius: 3px 3px 0 0;
  background: #a8c3dc;
}

.cl-mock-workflow__result b:nth-of-type(1) {
  height: 12px;
}
.cl-mock-workflow__result b:nth-of-type(2) {
  height: 22px;
  background: #86c6b3;
}
.cl-mock-workflow__result b:nth-of-type(3) {
  height: 30px;
  background: #b6cd34;
}

.cl-mock-analytics__metrics,
.cl-mock-investment__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 8px;
}

.cl-mock-analytics__metrics > div,
.cl-mock-investment__summary > div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 8px;
}

.cl-mock-analytics__metrics b,
.cl-mock-investment__summary b {
  width: 58%;
  height: 7px;
  border-radius: 99px;
  background: #8f9388;
}

.cl-mock-analytics__metrics i,
.cl-mock-investment__summary i {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 17px;
  height: 8px;
  border-bottom: 2px solid #aac322;
  border-left: 2px solid #aac322;
  transform: skewY(-24deg);
}

.cl-mock-analytics__metrics i.is-blue {
  border-color: #84acd3;
}

.cl-mock-analytics__lower {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 7px;
}

.cl-mock-analytics__chart,
.cl-mock-analytics__funnel,
.cl-mock-analytics__channels {
  padding: 8px;
}

.cl-mock-analytics__chart > div {
  display: flex;
  height: 60px;
  align-items: flex-end;
  gap: 5px;
  margin-top: 7px;
  border-bottom: 1px solid #e0e3da;
}

.cl-mock-analytics__chart i {
  width: 10%;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: #b9cf43;
}

.cl-mock-analytics__chart i:nth-child(even) {
  background: #8dc9b8;
}

.cl-mock-analytics__funnel p {
  width: var(--width);
  margin: 6px auto 0 !important;
  padding: 4px 5px;
  border-radius: 4px;
  background: #f3f5e5;
  color: #74786d;
  font-size: 5px;
}

.cl-mock-analytics__funnel b {
  display: block;
  width: 58%;
  height: 3px;
  margin-top: 3px;
  border-radius: 99px;
  background: #bbc863;
}

.cl-mock-analytics__channels p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 4px;
  margin: 7px 0 0 !important;
}

.cl-mock-analytics__channels p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #afc70f;
}

.cl-mock-analytics__channels p span {
  height: 3px;
  border-radius: 99px;
  background: #d5d8cf;
}

.cl-mock-analytics__channels p b {
  width: 13px;
  height: 4px;
  border-radius: 99px;
  background: #94988d;
}

.cl-mock-investment__summary {
  grid-template-columns: repeat(4, 1fr);
}

.cl-mock-investment__summary i.is-accent {
  border-color: #7fc6b3;
}

.cl-mock-investment__table {
  overflow: hidden;
}

.cl-mock-investment__table header,
.cl-mock-investment__table > div {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
}

.cl-mock-investment__table header {
  background: #f4f5ef;
}

.cl-mock-investment__table > div {
  border-top: 1px solid #eceee8;
  color: #73766d;
  font-size: 5px;
}

.cl-mock-investment__table > div span {
  width: 70%;
  height: 4px;
  border-radius: 99px;
  background: #d5d8d0;
}

.cl-mock-investment__table > div span.is-strong {
  background: #b5ca38;
}

.cl-mock-investment__range {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #85887f;
  font-size: 5px;
}

.cl-mock-investment__range i {
  width: 34px;
  height: 6px;
  border-radius: 99px;
  background: #d7dad2;
}

.cl-mock-investment__range em {
  margin-left: auto;
  border-radius: 99px;
  padding: 3px 6px;
  background: #eff3ce;
  color: #66740d;
  font-style: normal;
}

@media (max-width: 767px) {
  .cl-screen-mock {
    width: 100%;
    height: 296px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .cl-mock__rail {
    width: 36px;
    flex-basis: 36px;
  }

  .cl-mock__surface {
    padding: 9px;
  }

  .cl-mock-card__grid,
  .cl-mock-contacts__grid,
  .cl-mock-records__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

/* Production typography scale.
   PKSHA AI SaaS の本文 14–16px / 通常見出し 32px の比率を基準に、
   本文サイズは維持したまま見出しの段差を穏やかにする。 */
.cl-production-story .cl-hero h1 {
  font-size: clamp(24px, 2vw, 28px);
}

.cl-production-story .cl-hero__catch {
  font-size: clamp(42px, 3.7vw, 52px);
  line-height: 1.28 !important;
}

.cl-production-story .cl-product-preview__heading h2,
.cl-production-story .cl-problems .cl-section-heading h2 {
  font-size: clamp(28px, 2.5vw, 32px);
}

.cl-production-story .cl-problem-card h3 {
  font-size: clamp(21px, 1.8vw, 24px);
  line-height: 1.55;
}

.cl-production-story .cl-product-preview__copy h3 {
  font-size: clamp(30px, 2.7vw, 36px);
  line-height: 1.48;
}

.cl-production-story .cl-features__heading h2 {
  font-size: clamp(36px, 3.1vw, 42px);
  line-height: 1.38;
}

.cl-production-story .cl-feature h3 {
  font-size: clamp(30px, 2.7vw, 36px);
  line-height: 1.48;
}

@media (max-width: 767px) {
  .cl-production-story .cl-hero h1 {
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .cl-production-story .cl-hero__catch {
    font-size: clamp(32px, 8.5vw, 34px);
  }

  .cl-production-story .cl-product-preview__heading h2,
  .cl-production-story .cl-problems .cl-section-heading h2 {
    font-size: clamp(26px, 7.2vw, 28px);
  }

  .cl-production-story .cl-problem-card h3 {
    font-size: 22px;
  }

  .cl-production-story .cl-product-preview__copy h3,
  .cl-production-story .cl-feature h3 {
    font-size: clamp(27px, 7.5vw, 30px);
  }

  .cl-production-story .cl-features__heading h2 {
    font-size: clamp(30px, 8.2vw, 33px);
  }
}
