:root {
  --bg: #f9fdfc;
  --surface: #ffffff;
  --surface-muted: #f0f7f4;
  --ink: #0f1c1a;
  --muted: #263936;
  --line: #d6e8e2;
  --brand: #0d9488;
  --brand-strong: #0f766e;
  --accent: #f97316;
  --shadow: 0 24px 60px rgba(13, 148, 136, 0.08);
  --shadow-hover: 0 32px 80px rgba(13, 148, 136, 0.15);
  --radius: 12px;
  color-scheme: light;
  font-family: Inter, "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 30%, rgba(13, 148, 136, 0.12), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(249, 115, 22, 0.08), transparent 45%);
  z-index: -1;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(214, 232, 226, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  position: relative;
  gap: 10px;
  min-width: 0;
  height: 64px;
  padding: 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand__logo {
  display: block;
  width: 58px;
  height: 100%;
  flex: 0 0 58px;
  object-fit: contain;
}

.brand__text {
  display: inline-block;
  color: #0a4f49;
  font-family: "BIZ UDPGothic", "Yu Gothic UI", "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(1.15rem, 1.42vw, 1.36rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.site-menu a:hover,
.footer-grid a:hover,
.footer-button:hover {
  color: var(--brand);
}

.language-link {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(5px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.4);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  align-items: center;
  padding: 58px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "manga"
    "lead";
  row-gap: 36px;
  justify-items: center;
}

.hero-top {
  grid-area: top;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 26px);
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1120px;
}

.hero-manga {
  grid-area: manga;
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-manga picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-manga img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface);
}

.boss-message {
  grid-area: lead;
}



.hero-title,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.35;
}

.hero-title {
  width: 100%;
  max-width: none;
  font-size: clamp(2.35rem, 4.35vw, 4.2rem);
  line-height: 1.22;
  background: linear-gradient(110deg, var(--ink), var(--brand-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

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

.phrase-wrap {
  display: inline;
}

.hero-top-subtitle {
  display: inline-block;
  max-width: 30em;
  margin: 0;
  padding: 10px clamp(18px, 2.4vw, 28px) 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brand-strong);
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.boss-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin: 0;
}

.boss-message__image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 16px 32px rgba(13, 148, 136, 0.15);
  flex-shrink: 0;
}

.boss-message__lead {
  flex: 1;
  min-width: 0;
  margin: 0;
  --message-border: rgba(249, 115, 22, 0.88);
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: clamp(28px, 2.8vw, 40px) clamp(38px, 5vw, 72px) clamp(24px, 2.7vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.9vw, 22px);
  text-align: center;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.boss-message__lead::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -36px;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 360' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23fffaf6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M74 3H960Q997 3 997 40V320Q997 357 960 357H74Q37 357 37 320V202L4 180L37 158V40Q37 3 74 3Z' fill='url(%23g)' stroke='rgb(249,115,22)' stroke-opacity='0.88' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  filter: drop-shadow(0 26px 36px rgba(249, 115, 22, 0.1)) drop-shadow(0 16px 28px rgba(13, 148, 136, 0.07));
  pointer-events: none;
}

.boss-message__lead p {
  position: relative;
  z-index: 2;
  width: min(100%, 44em);
  margin: 0 auto;
  font-size: clamp(1.22rem, 1.55vw, 1.52rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.boss-message__lead-line {
  display: block;
}

.boss-message__lead p:first-child .boss-message__lead-line {
  white-space: normal;
}

.boss-message__lead p:first-child {
  color: var(--ink);
  font-size: clamp(1.8rem, 1.92vw, 2.04rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  width: min(100%, 38em);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.boss-message__lead p:last-child {
  color: var(--muted);
}

.boss-message--image-right {
  flex-direction: row-reverse;
}

.boss-message--feature {
  margin-top: clamp(34px, 4vw, 56px);
}

.boss-message--image-right .boss-message__lead::before {
  inset: 0 -36px 0 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 360' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23fffaf6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M40 3H926Q963 3 963 40V158L996 180L963 202V320Q963 357 926 357H40Q3 357 3 320V40Q3 3 40 3Z' fill='url(%23g)' stroke='rgb(249,115,22)' stroke-opacity='0.88' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

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



.section {
  padding: 96px 0;
  scroll-margin-top: 110px;
}

#features {
  padding-top: clamp(18px, 2.4vw, 32px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

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

.section-heading {
  max-width: 840px;
  margin-bottom: 40px;
}

.features-heading {
  max-width: none;
  margin-bottom: 48px;
}

.features-heading .eyebrow {
  position: relative;
  display: inline-block;
  padding-left: 48px;
  margin-bottom: 24px;
  color: var(--brand-strong);
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: none;
}

.features-heading .eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.18);
  transform: translateY(-50%);
}

.features-heading .eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: translateY(-65%) rotate(-45deg);
}

.message-banner {
  max-width: none;
  margin-bottom: 24px;
  padding: clamp(18px, 2.4vw, 28px) clamp(22px, 3vw, 38px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #ffffff;
  font-size: clamp(1.85rem, 2.55vw, 2.55rem);
  line-height: 1.28;
  box-shadow: 0 20px 46px rgba(13, 148, 136, 0.22);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.section-heading.features-heading h2 {
  font-size: clamp(1.85rem, 2.55vw, 2.55rem);
}

.section-heading.features-heading p:not(.eyebrow) {
  max-width: none;
  font-size: clamp(1.28rem, 1.55vw, 1.58rem);
  font-weight: 750;
  line-height: 1.75;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.section-heading p:not(.eyebrow),
.cta-panel p {
  color: var(--muted);
  font-size: clamp(1.2rem, 1.35vw, 1.45rem);
  font-weight: 700;
  line-height: 1.75;
}

.note-study-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 48px;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  width: 100%;
  margin: 0 0 clamp(36px, 4.4vw, 58px);
  padding: clamp(10px, 1.35vw, 18px) clamp(22px, 3.8vw, 46px);
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 247, 239, 0.98), rgba(238, 249, 246, 0.94)),
    radial-gradient(circle at 6% 0%, rgba(249, 115, 22, 0.32), transparent 34%),
    radial-gradient(circle at 94% 100%, rgba(13, 148, 136, 0.3), transparent 30%);
  box-shadow:
    0 26px 64px rgba(15, 28, 26, 0.12),
    0 14px 34px rgba(13, 148, 136, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.note-study-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    rgba(249, 115, 22, 0.44),
    rgba(255, 255, 255, 0.08) 30%,
    rgba(13, 148, 136, 0.38) 56%,
    rgba(249, 115, 22, 0.4)
  );
  background-size: 190% 100%;
  opacity: 0.78;
  transition: opacity 180ms ease;
  z-index: -1;
  animation: note-study-gradient-drift 5.8s ease-in-out infinite;
}

.note-study-banner__brand,
.note-study-banner__label,
.note-study-banner__arrow {
  position: relative;
  z-index: 1;
}

.note-study-banner__brand {
  display: inline-flex;
  width: clamp(176px, 12vw, 230px);
  align-items: center;
  justify-content: center;
}

.note-study-banner__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.note-study-banner__label {
  min-width: 0;
  color: #0f1c1a;
  font-size: clamp(1.34rem, 1.72vw, 1.96rem);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-shadow: 0 4px 18px rgba(15, 28, 26, 0.12);
  white-space: nowrap;
  word-break: normal;
}

.note-study-banner__arrow {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 16px 30px rgba(13, 148, 136, 0.26);
  transition: transform 180ms ease, background 180ms ease;
}

.note-study-banner__arrow::before,
.note-study-banner__arrow::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.note-study-banner__arrow::before {
  width: 15px;
  height: 3px;
  border-radius: 999px;
}

.note-study-banner__arrow::after {
  width: 9px;
  height: 9px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  background: transparent;
  transform: translateX(4px) rotate(45deg);
}

.note-study-banner:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(15, 28, 26, 0.14),
    0 18px 40px rgba(13, 148, 136, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.note-study-banner:hover::before {
  opacity: 1;
}

.note-study-banner:hover .note-study-banner__arrow {
  transform: translateX(4px);
  background: var(--brand-strong);
}

@keyframes note-study-gradient-drift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  42%,
  58% {
    background-position: 100% 50%;
  }
}

.workflow-list p,
.pricing-card p,
.pricing-card li,
.feature-item p,
.faq-list p,
.metric dd,
.footer-grid p,
.copyright {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.05vw, 1.18rem);
  font-weight: 600;
  line-height: 1.78;
}

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

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

.persona-simulation {
  margin-top: clamp(26px, 3.5vw, 44px);
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.persona-simulation__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.persona-simulation__header h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.35;
}

.persona-simulation__lead {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.persona-simulation__lead p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: clamp(1.16rem, 1.35vw, 1.38rem);
  font-weight: 750;
  line-height: 1.75;
}

.persona-simulation__rotator {
  position: relative;
  display: block;
  margin-top: 28px;
  padding: 34px 24px 24px;
  border: 3px solid rgba(13, 148, 136, 0.42);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(240, 253, 250, 0.92), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 36%);
  box-shadow: 0 24px 64px rgba(13, 148, 136, 0.14);
}

.persona-simulation__frame-label {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  max-width: min(780px, calc(100% - 48px));
  min-height: 34px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.22);
}

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

.persona-simulation__item {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: center;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.persona-simulation__item.is-switching {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
}

.persona-simulation__item.has-switched {
  animation: persona-card-pop 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  border-color: rgba(13, 148, 136, 0.34);
  background: rgba(240, 253, 250, 0.94);
  box-shadow: 0 18px 36px rgba(13, 148, 136, 0.14);
}

.persona-simulation__item-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.persona-simulation__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(13, 148, 136, 0.1);
  font-size: 2rem;
  line-height: 1;
}

.persona-simulation__item-header div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.persona-simulation__item h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  line-height: 1.35;
}

.persona-simulation__item p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.95vw, 1.08rem);
  font-weight: 650;
  line-height: 1.68;
}

@keyframes persona-card-pop {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(1.02);
  }

  45% {
    opacity: 1;
    transform: translateY(0) scale(1.025);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .persona-simulation__item {
    transition: none;
  }

  .persona-simulation__item.has-switched {
    animation: none;
  }
}

.feature-secondary-group {
  margin-top: clamp(54px, 6vw, 84px);
}

.feature-secondary-group > h3 {
  margin: 0 0 28px;
  font-size: clamp(1.85rem, 2.55vw, 2.55rem);
}

.feature-item {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 148, 136, 0.3);
}

.feature-visual {
  --feature-accent: var(--brand);
  --feature-deep: var(--brand-strong);
  --feature-soft: #e0f2fe;
  position: relative;
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  border-bottom: 3px solid #111827;
  background:
    radial-gradient(circle at 18% 20%, rgba(17, 24, 39, 0.12) 0 2px, transparent 2.5px),
    repeating-linear-gradient(118deg, rgba(17, 24, 39, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38)),
    linear-gradient(135deg, var(--feature-soft), #fff7ed);
  background-size: 18px 18px, auto, auto, auto;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid #111827;
  border-radius: 10px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 48%, transparent 48% 52%, rgba(255, 255, 255, 0.18) 52% 100%),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.feature-visual--comic-panel {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  aspect-ratio: 1;
  border-bottom: 3px solid #111827;
  background: #ffffff;
}

.feature-visual--comic-panel::before {
  content: none;
}

.feature-visual__comic-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.feature-visual--video {
  --feature-accent: #2563eb;
  --feature-deep: #1d4ed8;
  --feature-soft: #dbeafe;
}

.feature-visual--adjust {
  --feature-accent: #f97316;
  --feature-deep: #c2410c;
  --feature-soft: #ffedd5;
}

.feature-visual--character {
  --feature-accent: #7c3aed;
  --feature-deep: #5b21b6;
  --feature-soft: #ede9fe;
}

.feature-visual--culture {
  --feature-accent: #0891b2;
  --feature-deep: #0e7490;
  --feature-soft: #cffafe;
}

.feature-visual--xrisk {
  --feature-accent: #111827;
  --feature-deep: #0f172a;
  --feature-soft: #e5e7eb;
}

.feature-visual__scene,
.feature-visual__callouts {
  position: relative;
  z-index: 1;
}

.feature-visual__scene {
  display: grid;
  grid-template-columns: minmax(152px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: center;
  min-height: 244px;
}

.feature-visual__person {
  position: relative;
  align-self: center;
  z-index: 2;
  min-width: 0;
}

.feature-visual__person img {
  width: min(100%, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid #111827;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 10px 10px 0 rgba(17, 24, 39, 0.2);
  transform: rotate(-2deg);
}

.feature-visual__person::before,
.feature-visual__person::after {
  position: absolute;
  z-index: 4;
  color: var(--feature-accent);
  font-weight: 950;
  line-height: 1;
  text-shadow:
    2px 0 #111827,
    -2px 0 #111827,
    0 2px #111827,
    0 -2px #111827;
}

.feature-visual__person::before {
  content: "!";
  top: -24px;
  left: 10px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  transform: rotate(-16deg);
}

.feature-visual__person::after {
  content: "!!";
  right: -16px;
  bottom: 18px;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  transform: rotate(13deg);
}

.feature-visual__effect {
  position: absolute;
  left: 50%;
  bottom: -22px;
  z-index: 5;
  min-width: min(168px, 100%);
  padding: 8px 12px;
  border: 3px solid #111827;
  border-radius: 10px;
  background: #fff1a8;
  color: #111827;
  font-size: clamp(0.96rem, 1.15vw, 1.22rem);
  font-weight: 950;
  line-height: 1.25;
  text-align: center;
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 4px 4px 0 rgba(17, 24, 39, 0.16);
}

.feature-visual__workspace {
  position: relative;
  min-height: 218px;
  padding: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature-visual__workspace::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto auto;
  width: 52%;
  height: 100%;
  background:
    linear-gradient(68deg, transparent 0 44%, rgba(17, 24, 39, 0.16) 45% 47%, transparent 48%),
    linear-gradient(80deg, transparent 0 54%, rgba(17, 24, 39, 0.12) 55% 57%, transparent 58%),
    linear-gradient(101deg, transparent 0 62%, rgba(17, 24, 39, 0.12) 63% 65%, transparent 66%);
  pointer-events: none;
}

.feature-visual__artifact {
  position: relative;
  width: min(48%, 164px);
  min-height: 108px;
  padding: 14px;
  border-radius: 6px;
  background: #ffffff;
  border: 3px solid #111827;
  transform: rotate(-6deg);
  box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.12);
}

.feature-visual__artifact::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--feature-accent);
  opacity: 0.9;
}

.feature-visual__artifact span {
  display: block;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(15, 28, 26, 0.16);
}

.feature-visual__artifact span:nth-child(2) {
  width: 78%;
}

.feature-visual__artifact span:nth-child(3) {
  width: 56%;
}

.feature-visual__review {
  position: absolute;
  right: 0;
  top: 18px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  width: min(88%, 360px);
  min-height: 142px;
  padding: 18px 20px;
  border: 4px solid #111827;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 8px 8px 0 rgba(17, 24, 39, 0.16);
  color: var(--ink);
  font-size: clamp(1.12rem, 1.35vw, 1.42rem);
  font-weight: 950;
  line-height: 1.42;
}

.feature-visual__review::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: 34px;
  width: 30px;
  height: 28px;
  background: #ffffff;
  border-left: 4px solid #111827;
  border-bottom: 4px solid #111827;
  transform: skewX(-22deg) rotate(18deg);
}

.feature-visual__symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #111827;
  border-radius: 50%;
  background: var(--feature-deep);
  color: #ffffff;
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  font-weight: 950;
  line-height: 1;
}

.feature-visual--video .feature-visual__artifact::before {
  border-radius: 50%;
  clip-path: polygon(28% 18%, 28% 82%, 82% 50%);
}

.feature-visual--adjust .feature-visual__artifact::before {
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--feature-accent) 0 58%, rgba(249, 115, 22, 0.22) 58% 100%);
}

.feature-visual--character .feature-visual__person::after {
  background: linear-gradient(135deg, var(--feature-deep), #0d9488);
}

.feature-visual--culture .feature-visual__artifact::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 36%, #ffffff 0 8%, transparent 9%),
    radial-gradient(circle at 63% 54%, #ffffff 0 7%, transparent 8%),
    var(--feature-accent);
}

.feature-visual--xrisk .feature-visual__workspace {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(229, 231, 235, 0.9));
}

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

.feature-visual__callouts li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  min-height: 58px;
  align-items: center;
  padding: 10px 12px;
  border: 2px solid #111827;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 800;
  line-height: 1.45;
}

.feature-visual__callouts li::before {
  content: "";
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--feature-accent);
  border-left: 2px solid var(--feature-accent);
  transform: rotate(-45deg);
}

.feature-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.feature-copy__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-item h3,
.workflow-list h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.45;
}

.feature-item p,
.workflow-list p,
.faq-list p {
  margin: 0;
}

.feature-case-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  min-height: 48px;
  margin: 22px auto 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.18);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.feature-case-link::after {
  content: none;
}

.feature-case-link:hover {
  transform: translateY(-2px);
  background: var(--brand-strong);
  box-shadow: 0 18px 36px rgba(13, 148, 136, 0.22);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

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

.workflow-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  transition: all 300ms ease;
}

.workflow-list li:hover {
  transform: translateX(12px);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.1);
}

.workflow-list span {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.65rem;
}

.pricing-section {
  padding: clamp(18px, 2.6vw, 34px) 0 clamp(54px, 6vw, 78px);
}

.pricing-intro-heading {
  margin: 0 0 clamp(32px, 4vw, 48px);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: keep-all;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.38;
}

.pricing-heading {
  max-width: none;
  margin-bottom: 28px;
}

.pricing-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.pricing-heading .eyebrow {
  margin-bottom: 22px;
}

.pricing-heading p:not(.eyebrow) {
  white-space: pre-line;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(13, 148, 136, 0.08);
}

.pricing-card--highlighted {
  border-color: rgba(13, 148, 136, 0.42);
  box-shadow: 0 22px 48px rgba(13, 148, 136, 0.16);
}

.pricing-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.pricing-card__header {
  min-height: 116px;
  padding-right: 52px;
}

.pricing-card__header h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.25vw, 1.34rem);
  line-height: 1.38;
}

.pricing-card__header p {
  margin: 0;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 6px;
  color: var(--ink);
}

.pricing-card__price span {
  font-size: clamp(1.9rem, 2.5vw, 2.5rem);
  font-weight: 950;
  letter-spacing: 0;
}

.pricing-card__price small {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.pricing-card__note {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.5;
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 12px 0 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.18);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.pricing-card__cta:hover {
  transform: translateY(-2px);
  background: var(--brand-strong);
  box-shadow: 0 18px 36px rgba(13, 148, 136, 0.22);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--brand);
  border-left: 2px solid var(--brand);
  transform: translateY(-50%) rotate(-45deg);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.metric {
  border-top: 2px solid var(--brand);
  padding-top: 16px;
}

.metric dt {
  font-weight: 950;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.metric dd {
  margin: 10px 0 0;
  font-weight: 700;
}

.cta-panel {
  border-radius: var(--radius);
  padding: clamp(30px, 6vw, 60px);
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #ffffff;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.1), transparent 50%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
}

.cta-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.cta-panel .button-secondary:hover {
  background: #ffffff;
  color: var(--brand-strong);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 48px;
}

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

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

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-top: 12px;
}

.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-heading p:not(.eyebrow) {
  max-width: 680px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 18px 48px rgba(15, 28, 26, 0.08);
}

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

.contact-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.contact-label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.contact-required,
.contact-optional {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 8px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.contact-required {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.contact-optional {
  border-color: #bfe1d8;
  background: #eef8f5;
  color: #0f766e;
}

.contact-required--inline {
  margin-right: 8px;
  vertical-align: 0.08em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.16);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #667a76;
}

.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-turnstile {
  display: flex;
  min-height: 68px;
  align-items: center;
}

.contact-turnstile .cf-turnstile {
  max-width: 100%;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-form__actions .button {
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.contact-form__actions .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-form__status[hidden] {
  display: none;
}

.contact-form__status.is-success {
  color: #0f766e;
}

.contact-form__status.is-error {
  color: #b42318;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand-title {
  margin: 10px 0 0;
  color: #0a4f49;
  font-size: clamp(1.2rem, 1.45vw, 1.42rem);
  font-weight: 950;
  line-height: 1.25;
}

.footer-grid p,
.copyright {
  margin: 14px 0 0;
}

.footer-grid .footer-brand-title {
  margin-top: 10px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.cookie-dialog {
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.cookie-dialog::backdrop {
  background: rgba(19, 33, 31, 0.36);
}

.cookie-dialog form {
  padding: 26px;
}

.cookie-dialog h2 {
  margin: 0 0 10px;
}

.cookie-dialog p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .workflow-grid,
  .proof-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "top"
      "manga"
      "lead";
  }

  .hero-manga {
    margin-bottom: 4px;
  }

  .boss-message {
    flex-direction: column;
    gap: 20px;
  }

  .boss-message__lead {
    width: min(100%, 880px);
    padding: clamp(22px, 3vw, 28px) clamp(30px, 6vw, 54px) clamp(20px, 2.8vw, 26px);
    gap: 12px;
  }

  .boss-message__lead::before {
    inset: -36px 0 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 390' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23fffaf6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M64 37H470L500 4L530 37H936Q973 37 973 74V350Q973 387 936 387H64Q27 387 27 350V74Q27 37 64 37Z' fill='url(%23g)' stroke='rgb(249,115,22)' stroke-opacity='0.88' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  }

  .boss-message--image-right .boss-message__lead::before {
    inset: -36px 0 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 390' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23fffaf6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M64 37H470L500 4L530 37H936Q973 37 973 74V350Q973 387 936 387H64Q27 387 27 350V74Q27 37 64 37Z' fill='url(%23g)' stroke='rgb(249,115,22)' stroke-opacity='0.88' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  }

  .boss-message__lead p {
    width: min(100%, 36em);
    font-size: clamp(1.08rem, 2.25vw, 1.28rem);
    line-height: 1.68;
  }

  .boss-message__lead p:first-child {
    width: min(100%, 30em);
    font-size: clamp(1.68rem, 3.4vw, 2rem);
    padding-bottom: 12px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .boss-message__lead {
    padding: 34px 24px 20px;
    gap: 10px;
  }

  .boss-message__lead p {
    font-size: clamp(1.04rem, 4.4vw, 1.18rem);
    line-height: 1.68;
  }

  .boss-message__lead p:first-child {
    font-size: clamp(1.42rem, 5.9vw, 1.58rem);
    line-height: 1.56;
    padding-bottom: 10px;
  }

  .boss-message__lead-line {
    display: inline;
  }

  .boss-message__lead p:first-child .boss-message__lead-line {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .hero-title {
    font-size: clamp(1.85rem, 6.6vw, 3.2rem);
  }

  .hero-top-subtitle {
    font-size: clamp(1.15rem, 4.6vw, 1.65rem);
  }

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

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .brand {
    height: 52px;
    padding: 5px;
    gap: 7px;
  }

  .brand__logo {
    width: 46px;
    flex-basis: 46px;
  }

  .brand__text {
    font-size: clamp(0.96rem, 3.9vw, 1.1rem);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-menu {
    display: none;
    position: absolute;
    inset: 76px 14px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding: 34px 0 48px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-manga img {
    max-width: 560px;
  }

  .hero-title {
    position: relative;
    display: inline-block;
    width: auto;
    max-width: min(100%, 19em);
    padding: 18px 20px 20px;
    border: 2px solid rgba(15, 118, 110, 0.72);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    box-shadow: 0 20px 42px rgba(13, 148, 136, 0.24), 0 8px 0 rgba(15, 118, 110, 0.14);
    color: #ffffff;
    font-size: clamp(1.58rem, 6.6vw, 1.95rem);
    line-height: 1.36;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #ffffff;
    isolation: isolate;
  }

  .hero-title::after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: -13px;
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(15, 118, 110, 0.72);
    border-bottom: 2px solid rgba(15, 118, 110, 0.72);
    border-bottom-right-radius: 5px;
    background: linear-gradient(135deg, transparent 0 49%, var(--brand) 50% 100%);
    transform: rotate(45deg);
    z-index: -1;
  }

  .hero-title .phrase-wrap,
  .hero-top-subtitle .phrase-wrap,
  .features-heading .message-banner .phrase-wrap {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-top-subtitle {
    max-width: 19em;
    padding: 8px 12px 10px;
    font-size: clamp(1.05rem, 4.2vw, 1.18rem);
    line-height: 1.56;
  }

  .boss-message__image {
    width: 200px;
    height: 200px;
  }

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

  .section {
    padding: 48px 0;
  }

  #features {
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .features-heading {
    margin-bottom: 34px;
    text-align: center;
  }

  .features-heading .eyebrow {
    margin-bottom: 18px;
    padding-left: 40px;
    font-size: clamp(1.32rem, 5.2vw, 1.55rem);
    line-height: 1.3;
  }

  .features-heading .eyebrow::before {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .features-heading .eyebrow::after {
    left: 8px;
    width: 11px;
    height: 6px;
    border-bottom-width: 3px;
    border-left-width: 3px;
  }

  .message-banner,
  .section-heading.features-heading h2 {
    font-size: clamp(1.34rem, 5.4vw, 1.56rem);
    line-height: 1.43;
  }

  .message-banner {
    margin-bottom: 18px;
    padding: 16px 18px;
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .section-heading.features-heading p:not(.eyebrow) {
    max-width: 22em;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.08rem, 4.2vw, 1.18rem);
    line-height: 1.72;
    font-weight: 700;
  }

  .feature-copy {
    align-items: center;
    text-align: center;
  }

  .note-study-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin-bottom: 34px;
    padding: 14px 16px;
    text-align: center;
  }

  .note-study-banner__label {
    font-size: clamp(1.08rem, 4.6vw, 1.28rem);
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: keep-all;
  }

  .note-study-banner__brand {
    width: min(200px, 58vw);
  }

  .note-study-banner__arrow {
    width: 42px;
    height: 42px;
  }

  .feature-item h3,
  .feature-item p {
    text-align: center;
  }

  .persona-simulation__header,
  .persona-simulation__lead,
  .pricing-heading,
  .contact-heading {
    text-align: center;
  }

  .persona-simulation__lead p,
  .pricing-heading p:not(.eyebrow),
  .contact-heading p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-grid,
  .pricing-grid,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .persona-simulation__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .persona-simulation__rotator {
    margin-top: 24px;
    padding: 28px 12px 12px;
    border-width: 2px;
    border-radius: 18px;
  }

  .persona-simulation__frame-label {
    left: 14px;
    max-width: calc(100% - 28px);
    min-height: 30px;
    padding: 5px 12px;
    font-size: 0.8rem;
  }

  .feature-visual {
    min-height: auto;
    padding: 18px;
  }

  .feature-visual--comic-panel {
    padding: 0;
  }

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

  .feature-visual__person {
    align-self: center;
    justify-self: center;
  }

  .feature-visual__person img {
    width: min(100%, 160px);
    border-width: 3px;
    box-shadow: 5px 5px 0 rgba(17, 24, 39, 0.16);
  }

  .feature-visual__effect {
    bottom: -18px;
    max-width: 150px;
    padding: 5px 8px;
    border-width: 2px;
  }

  .feature-visual__workspace {
    min-height: 184px;
    padding: 4px 0 0;
  }

  .feature-visual__artifact {
    width: min(46%, 130px);
    min-height: 82px;
    padding: 12px;
    border-width: 2px;
  }

  .feature-visual__review {
    top: 8px;
    right: 0;
    grid-template-columns: 36px 1fr;
    width: min(84%, 260px);
    min-height: 114px;
    padding: 12px;
    border-width: 2px;
  }

  .feature-visual__symbol {
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }

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

  .feature-visual__callouts li {
    min-height: auto;
  }

  .pricing-section {
    padding: 24px 0 46px;
  }

  .pricing-heading {
    margin-bottom: 22px;
  }

  .pricing-card__header,
  .pricing-card__note {
    min-height: auto;
  }

  .persona-simulation__item {
    min-height: auto;
    padding: 12px;
  }

  .persona-simulation__item-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }

  .persona-simulation__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.45rem;
  }

  .persona-simulation__item h4 {
    font-size: 1rem;
  }

  .persona-simulation__item p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

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

  .button,
  .reveal,
  .note-study-banner,
  .note-study-banner::before,
  .note-study-banner__arrow {
    transition: none;
    animation: none;
  }
}
