:root {
  --purple: #4b2a90;
  --purple-deep: #35166f;
  --purple-soft: #a99af2;
  --coral: #ff707b;
  --mint: #58d0b5;
  --gold: #ffc25a;
  --ink: #2b2364;
  --muted: #6e6895;
  --paper: rgba(255, 255, 255, 0.9);
  --line: rgba(84, 61, 143, 0.14);
  --shadow: 0 22px 70px rgba(87, 69, 151, 0.16);
  --max: 1120px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 24%, rgba(167, 154, 242, 0.34), transparent 18rem),
    radial-gradient(circle at 93% 36%, rgba(255, 112, 123, 0.22), transparent 18rem),
    radial-gradient(circle at 2% 82%, rgba(88, 208, 181, 0.24), transparent 18rem),
    linear-gradient(180deg, #fbfaff 0%, #f7f3ff 42%, #fff8fb 78%, #fbfaff 100%);
  font-family: ui-rounded, "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle, rgba(166, 145, 245, 0.5) 0 2px, transparent 3px) 7vw 32vh / 28px 28px,
    radial-gradient(circle, rgba(255, 126, 152, 0.36) 0 2px, transparent 3px) 86vw 60vh / 26px 26px,
    radial-gradient(circle, rgba(86, 205, 187, 0.34) 0 2px, transparent 3px) 5vw 73vh / 26px 26px;
  opacity: 0.5;
}

body::after {
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 130, 159, 0.24) 19%, transparent 29%),
    linear-gradient(112deg, transparent 28%, rgba(170, 153, 245, 0.28) 29%, transparent 41%),
    linear-gradient(110deg, transparent 44%, rgba(255, 200, 102, 0.22) 45%, transparent 56%),
    linear-gradient(106deg, transparent 68%, rgba(89, 207, 186, 0.24) 69%, transparent 78%);
  transform: skewY(-5deg);
  transform-origin: 50% 20%;
  opacity: 0.75;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
  transition: padding 240ms ease, transform 240ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 18px 44px rgba(65, 39, 133, 0);
  backdrop-filter: blur(0);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.site-header.is-scrolled::before {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(65, 39, 133, 0.16);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 215px;
  height: auto;
  transition: width 240ms ease;
}

.site-header.is-scrolled .brand img {
  width: 176px;
}

.global-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 800;
}

.global-nav a,
.footer-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.global-nav a:hover,
.footer-nav a:hover {
  color: var(--coral);
  transform: translateY(-1px);
}

.header-contact,
.footer-contact,
.primary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-contact {
  border: 0;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 12px 24px rgba(75, 42, 144, 0.22);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-contact:hover,
.primary-button:hover,
.footer-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(75, 42, 144, 0.26);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  perspective: 1200px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -7rem -8%;
  height: 15rem;
  background: linear-gradient(100deg, rgba(255, 126, 152, 0.38), rgba(173, 155, 245, 0.42), rgba(255, 210, 126, 0.34));
  border-radius: 50% 50% 0 0;
  filter: blur(2px);
  opacity: 0.8;
  z-index: 1;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  animation: heroDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-ribbon,
.hero-star,
.hero-dot {
  position: absolute;
  display: block;
}

.hero-ribbon {
  width: 260px;
  height: 24px;
  border-radius: 999px;
  opacity: 0.42;
  filter: blur(1px);
  transform: rotate(-12deg);
  animation: ribbonFlow 9s ease-in-out infinite;
}

.ribbon-a {
  left: 8%;
  top: 69%;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 123, 0.66), rgba(255, 201, 100, 0.42), transparent);
}

.ribbon-b {
  right: 3%;
  top: 16%;
  width: 210px;
  background: linear-gradient(90deg, transparent, rgba(88, 208, 181, 0.5), rgba(169, 154, 242, 0.58), transparent);
  animation-delay: -3.2s;
}

.hero-star {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: #ffc95d;
  box-shadow: 0 0 0 8px rgba(255, 201, 93, 0.12), 0 0 26px rgba(255, 201, 93, 0.5);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  animation: sparkleFloat 5.6s ease-in-out infinite;
}

.star-a {
  left: 43%;
  top: 28%;
}

.star-b {
  left: 5%;
  top: 58%;
  width: 13px;
  height: 13px;
  background: #ff7c91;
  box-shadow: 0 0 0 7px rgba(255, 124, 145, 0.1), 0 0 22px rgba(255, 124, 145, 0.34);
  animation-delay: -1.6s;
}

.star-c {
  right: 13%;
  top: 8%;
  width: 15px;
  height: 15px;
  background: #66d4c0;
  box-shadow: 0 0 0 7px rgba(102, 212, 192, 0.12), 0 0 22px rgba(102, 212, 192, 0.34);
  animation-delay: -3.1s;
}

.hero-dot {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 64%);
  animation: glowPulse 7s ease-in-out infinite;
}

.hero-dot.dot-a {
  left: 33%;
  top: 51%;
}

.hero-dot.dot-b {
  right: 21%;
  bottom: 12%;
  width: 110px;
  height: 110px;
  animation-delay: -2.4s;
}

.hero-copy {
  width: min(520px, calc(100% - 48px));
  margin-left: max(7vw, 44px);
  padding-top: 58px;
  position: relative;
  z-index: 3;
  animation: copyLift 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(66px, 9vw, 104px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 14px 30px rgba(75, 42, 144, 0.12);
  animation: titlePulse 5.8s ease-in-out infinite;
}

.hero-lead {
  margin: 24px 0 32px;
  max-width: 500px;
  color: var(--ink);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  animation: actionRise 900ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.primary-button {
  border: 0;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 16px 28px rgba(75, 42, 144, 0.22);
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.text-button {
  color: var(--purple);
  transition: transform 180ms ease;
}

.text-button:hover,
.card-arrow:hover {
  transform: translateX(4px);
}

.text-button span,
.card-arrow {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: #fff;
  box-shadow: 0 8px 20px rgba(75, 42, 144, 0.13);
}

.section-shell {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0;
}

.soft-card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 56px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 84px rgba(87, 69, 151, 0.2);
}

.mission-section {
  margin-top: -38px;
  z-index: 4;
}

.mission-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 52px;
  align-items: center;
  padding: 76px 86px;
}

.mission-mark {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--purple);
  box-shadow: 0 18px 40px rgba(75, 42, 144, 0.2);
  animation: softFloat 5.8s ease-in-out infinite;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
}

.mission-copy h2,
.section-heading h2,
.company-info h2,
.profile-copy h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
  letter-spacing: 0;
}

.english-line {
  margin: 10px 0 20px;
  color: var(--purple);
  font-weight: 900;
}

.mission-copy p:not(.section-kicker):not(.english-line),
.profile-copy p {
  margin: 0 0 16px;
  font-weight: 700;
}

.section-heading {
  text-align: center;
  margin: 0 auto 34px;
}

.section-heading p:last-child {
  margin: 10px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 410px;
  padding: 22px 22px 60px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(84, 61, 143, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(251, 249, 255, 0.9), rgba(255, 255, 255, 0));
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 0;
  width: 178px;
  height: 138px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.86), transparent 46%),
    radial-gradient(circle at 62% 56%, rgba(170, 153, 245, 0.2), transparent 58%),
    radial-gradient(circle at 34% 72%, rgba(255, 112, 123, 0.12), transparent 54%);
  filter: blur(10px);
  opacity: 0.78;
  transform: translateX(-50%);
  animation: serviceGlow 6.4s ease-in-out infinite;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(84, 61, 143, 0.18);
}

.service-card:focus-visible {
  outline: 4px solid rgba(75, 42, 144, 0.28);
  outline-offset: 6px;
}

.service-card img {
  display: block;
  width: min(100%, 168px);
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 26px rgba(75, 42, 144, 0.14));
  animation: softFloat 6.4s ease-in-out infinite;
  transition: transform 260ms ease, filter 260ms ease;
  will-change: transform;
}

.service-card:nth-child(2) img,
.service-card:nth-child(2)::after {
  animation-delay: -1.2s;
}

.service-card:nth-child(3) img,
.service-card:nth-child(3)::after {
  animation-delay: -2.4s;
}

.service-card:nth-child(4) img,
.service-card:nth-child(4)::after {
  animation-delay: -3.6s;
}

.service-card:hover img {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  filter: drop-shadow(0 24px 32px rgba(75, 42, 144, 0.18));
}

.service-label {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

.tone-coral h3 {
  color: var(--coral);
}

.tone-purple h3 {
  color: var(--purple);
}

.tone-mint h3 {
  color: var(--mint);
}

.tone-gold h3 {
  color: #efa626;
}

.service-card p:last-of-type {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 52px 44px;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: -20% -8% auto;
  height: 56%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72), transparent 70%);
}

.value-item {
  position: relative;
  z-index: 1;
  padding: 0 26px;
  text-align: center;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: -1;
  width: 178px;
  height: 138px;
  border-radius: 52% 48% 46% 54%;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.94), transparent 42%),
    radial-gradient(circle at 70% 35%, rgba(170, 153, 245, 0.2), transparent 46%),
    radial-gradient(circle at 44% 76%, rgba(255, 112, 123, 0.14), transparent 48%);
  filter: blur(10px);
  transform: translateX(-50%);
  opacity: 0.88;
}

.value-item + .value-item {
  border-left: 1px solid var(--line);
}

.value-art {
  width: min(100%, 168px);
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 38%;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 62%, rgba(0, 0, 0, 0.62) 72%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 0 62%, rgba(0, 0, 0, 0.62) 72%, transparent 84%);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 26px rgba(75, 42, 144, 0.14));
  animation: softFloat 6.4s ease-in-out infinite;
  transition: transform 260ms ease, filter 260ms ease;
}

.value-item:nth-child(2) .value-art {
  animation-delay: -1.2s;
}

.value-item:nth-child(3) .value-art {
  animation-delay: -2.4s;
}

.value-item:nth-child(4) .value-art {
  animation-delay: -3.6s;
}

.value-item:hover .value-art {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  filter: drop-shadow(0 24px 32px rgba(75, 42, 144, 0.18));
}

.value-number {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.value-item h3 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 21px;
  line-height: 1.3;
}

.value-item p:last-child {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 58px 64px;
}

.company-info dl {
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}

.company-info dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.company-info dt {
  color: var(--purple);
  font-weight: 950;
}

.company-info dd {
  margin: 0;
  font-weight: 750;
}

.company-art {
  width: 100%;
  object-fit: contain;
  animation: softFloat 7s ease-in-out infinite;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
  align-items: center;
  padding: 58px 72px;
}

.profile-copy p {
  color: var(--ink);
}

.profile-visual {
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(171, 154, 245, 0.22), rgba(255, 255, 255, 0.9));
  box-shadow: 0 20px 54px rgba(75, 42, 144, 0.16), inset 0 0 0 1px rgba(75, 42, 144, 0.08);
  overflow: hidden;
  animation: softFloat 6.8s ease-in-out infinite;
}

.profile-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  margin: 0;
}

.news-card {
  padding: 10px 42px;
  border-radius: 34px;
}

.news-row {
  display: grid;
  grid-template-columns: 130px 120px minmax(0, 1fr) 30px;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease;
}

.news-row:hover {
  transform: translateX(6px);
  background: rgba(170, 153, 245, 0.06);
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.012) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.052) translate3d(-16px, -10px, 0);
  }
}

@keyframes copyLift {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes heroArtDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.06) translate3d(-18px, -10px, 0);
  }
}

@keyframes ribbonFlow {
  0%,
  100% {
    transform: translate3d(-18px, 0, 0) rotate(-12deg) scaleX(0.92);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(28px, -16px, 0) rotate(-7deg) scaleX(1.08);
    opacity: 0.58;
  }
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(45deg) scale(0.86);
    opacity: 0.46;
  }
  45% {
    transform: translate3d(12px, -18px, 0) rotate(67deg) scale(1.16);
    opacity: 1;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.16;
  }
  50% {
    transform: scale(1.16);
    opacity: 0.44;
  }
}

@keyframes titlePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes actionRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) scale(0.92);
  }
  50% {
    opacity: 0.78;
    transform: translateX(-50%) scale(1.1);
  }
}

.news-row:last-child {
  border-bottom: 0;
}

.news-row time {
  color: var(--purple);
  font-weight: 950;
}

.news-row p {
  margin: 0;
  font-weight: 750;
}

.news-row > span:last-child {
  color: var(--purple);
  font-weight: 950;
  text-align: right;
}

.service-detail-main {
  padding-top: 118px;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: center;
  min-height: 540px;
}

.service-detail-copy {
  position: relative;
  z-index: 2;
}

.service-detail-copy h1 {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(42px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

.service-detail-copy p:not(.section-kicker) {
  max-width: 660px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}

.service-detail-art {
  width: min(100%, 430px);
  justify-self: center;
  border-radius: 36%;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 62%, rgba(0, 0, 0, 0.7) 74%, transparent 86%);
  mask-image: radial-gradient(ellipse at center, #000 0 62%, rgba(0, 0, 0, 0.7) 74%, transparent 86%);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 42px rgba(75, 42, 144, 0.16));
  animation: softFloat 6.8s ease-in-out infinite;
}

.service-management-hero-art,
.service-development-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: none;
  mask-image: none;
  mix-blend-mode: normal;
  filter: drop-shadow(0 34px 52px rgba(75, 42, 144, 0.22));
  animation: heroArtDrift 9s ease-in-out infinite;
}

.service-management-hero,
.service-development-hero {
  width: 100%;
  min-height: calc(100svh - 56px);
  margin: -40px auto 0;
  padding: 138px max(24px, calc((100vw - var(--max)) / 2)) 78px;
  overflow: hidden;
  isolation: isolate;
}

.service-management-hero::before,
.service-development-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 250, 255, 0.98) 0%, rgba(251, 250, 255, 0.88) 33%, rgba(251, 250, 255, 0.38) 56%, rgba(251, 250, 255, 0.08) 100%),
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.94), transparent 24rem);
  pointer-events: none;
}

.service-management-hero::after,
.service-development-hero::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -12vh;
  z-index: 1;
  width: 58vw;
  height: 28vh;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(107, 74, 204, 0.2), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  animation: serviceGlow 6.4s ease-in-out infinite;
}

.detail-alert {
  padding: 22px 28px;
  border: 1px solid rgba(255, 112, 123, 0.3);
  border-radius: 24px;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(84, 61, 143, 0.1);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.34;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.9;
}

.detail-panel {
  display: grid;
  gap: 34px;
  padding: 58px 64px;
}

.detail-panel h2 {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.36;
  letter-spacing: 0;
}

.contact-panel h1 {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.4;
  letter-spacing: 0;
}

.contact-panel {
  padding: 38px 44px;
}

.contact-panel p {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-panel p + p {
  margin-top: 6px;
}

.detail-panel > div > p:not(.section-kicker) {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

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

.detail-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(84, 61, 143, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 112, 123, 0.12), transparent 6rem),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 36px rgba(84, 61, 143, 0.08);
}

.detail-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  font-weight: 950;
}

.detail-grid h3 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 22px;
  line-height: 1.35;
}

.detail-grid p {
  margin: 0;
  font-weight: 700;
  line-height: 1.85;
}

.detail-card-art {
  display: block;
  width: 100%;
  height: 176px;
  margin: -8px 0 18px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(84, 61, 143, 0.1));
}

.scope-layout {
  display: block;
}

.pm-scope-diagram {
  position: relative;
  overflow: hidden;
  padding: 36px 34px 42px;
  border: 1px solid rgba(84, 61, 143, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.84), transparent 16rem),
    radial-gradient(circle at 86% 80%, rgba(88, 208, 181, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 250, 239, 0.88), rgba(255, 255, 255, 0.76));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.diagram-lead {
  display: grid;
  gap: 4px;
  margin: 0 auto 34px;
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
}

.diagram-lead span {
  font-size: 20px;
  font-weight: 900;
}

.diagram-lead strong {
  color: var(--purple);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 950;
  letter-spacing: 0;
}

.diagram-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: 72px;
  align-items: center;
}

.diagram-left {
  display: grid;
  justify-items: center;
}

.diagram-stack {
  position: relative;
  display: grid;
  gap: 46px;
  justify-items: center;
}

.diagram-stack::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 50%;
  height: 56px;
  border-left: 5px dotted rgba(43, 35, 100, 0.7);
  transform: translateX(-50%);
}

.diagram-box {
  display: grid;
  place-items: center;
  width: min(100%, 250px);
  min-height: 76px;
  border: 3px solid rgba(43, 35, 100, 0.76);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 14px 28px rgba(84, 61, 143, 0.08);
}

.diagram-pm {
  position: relative;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.diagram-pm::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 2px);
  width: 74px;
  border-top: 5px solid rgba(43, 35, 100, 0.92);
  transform: translateY(-50%);
}

.diagram-work {
  position: relative;
  padding: 26px 30px;
  border: 5px dotted rgba(43, 35, 100, 0.82);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.diagram-work::before {
  content: "";
  position: absolute;
  top: 72%;
  left: -13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.diagram-work::after {
  content: "";
  position: absolute;
  top: 72%;
  left: -132px;
  width: 132px;
  border-top: 5px solid rgba(43, 35, 100, 0.92);
  transform: translateY(-50%);
}

.diagram-work h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.diagram-work ul {
  margin: 0;
  padding-left: 24px;
  font-weight: 850;
  line-height: 1.65;
}

.diagram-network {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 760px);
  margin: 58px 0 0;
  padding-top: 34px;
}

.diagram-network::before {
  content: "";
  position: absolute;
  top: 0;
  left: 11%;
  right: 11%;
  border-top: 5px dotted rgba(43, 35, 100, 0.72);
}

.diagram-network::after {
  content: "";
  position: absolute;
  top: -58px;
  left: 50%;
  height: 58px;
  border-left: 5px dotted rgba(43, 35, 100, 0.72);
}

.diagram-node {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 128px;
  border: 3px solid rgba(43, 35, 100, 0.72);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 14px 24px rgba(84, 61, 143, 0.07);
}

.diagram-node::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  height: 34px;
  border-left: 5px dotted rgba(43, 35, 100, 0.72);
  transform: translateX(-50%);
}

.character-diagram {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  gap: 30px;
  align-items: center;
}

.character-diagram-stage {
  position: relative;
  min-height: 520px;
  padding: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.character-diagram-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(84, 61, 143, 0.1));
}

.character-label,
.character-center-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 34px;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  box-shadow: none;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.3;
  text-align: center;
}

.character-center-badge {
  left: 50%;
  top: 64.8%;
  min-width: 130px;
  min-height: 40px;
  padding: 0 20px;
  color: #fff;
  background: rgba(75, 42, 144, 0.04);
  transform: translate(-50%, -50%);
}

.label-owner {
  left: 50%;
  top: 29.2%;
  transform: translate(-50%, -50%);
}

.label-member {
  left: 20%;
  bottom: 2.9%;
  transform: translate(-50%, 0);
}

.label-team {
  left: 50%;
  bottom: 2.9%;
  transform: translate(-50%, 0);
}

.label-vendor {
  left: 80%;
  bottom: 2.9%;
  transform: translate(-50%, 0);
}

.character-work {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(84, 61, 143, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 154, 242, 0.2), transparent 10rem),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(84, 61, 143, 0.1);
}

.character-work::before,
.character-work::after {
  display: none;
}

.flow-list {
  display: grid;
  gap: 18px;
}

.flow-list article {
  display: grid;
  grid-template-columns: 92px minmax(160px, 0.36fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(84, 61, 143, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.flow-list span {
  display: inline-flex;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  font-size: 12px;
  font-weight: 950;
}

.flow-list h3 {
  margin: 0;
  color: var(--purple);
  font-size: 20px;
}

.flow-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 24px 28px;
  border: 1px solid rgba(84, 61, 143, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(84, 61, 143, 0.08);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.55;
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.85;
}

.consultation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 58px 64px;
  overflow: hidden;
}

.consultation-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at 52% 58%, rgba(169, 154, 242, 0.32), transparent 66%);
  filter: blur(4px);
  pointer-events: none;
}

.service-development-hero-art {
  object-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 7%, #000 20%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 7%, #000 20%, #000 100%);
}

.service-development-hero {
  min-height: 100svh;
  margin-top: -118px;
  padding-top: 216px;
}

.service-development-hero::before {
  background:
    linear-gradient(180deg, #fbfaff 0%, rgba(251, 250, 255, 0.96) 8%, rgba(251, 250, 255, 0.52) 22%, rgba(251, 250, 255, 0) 42%),
    linear-gradient(90deg, rgba(251, 250, 255, 0.99) 0%, rgba(251, 250, 255, 0.9) 32%, rgba(251, 250, 255, 0.38) 58%, rgba(251, 250, 255, 0.08) 100%),
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.94), transparent 24rem);
}

.consultation-copy,
.external-form-frame {
  position: relative;
  z-index: 1;
}

.consultation-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.consultation-copy h2 {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
}

.consultation-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.9;
}

.consultation-copy .consultation-note {
  display: grid;
  place-items: center;
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 760px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 112, 123, 0.24);
  border-radius: 18px;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.external-form-frame {
  width: min(100%, 780px);
  min-height: 400px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(84, 61, 143, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(84, 61, 143, 0.1);
  overflow: hidden;
}

#form-container-xYtLLFb_dj {
  width: 100%;
}

.external-form-frame iframe {
  display: block;
  width: 100%;
  min-height: 400px;
  background: #fff;
}

.external-form-placeholder {
  display: grid;
  place-items: center;
  min-height: 400px;
  padding: 36px;
  border: 1px dashed rgba(84, 61, 143, 0.22);
  border-radius: 24px;
  color: var(--muted);
  background:
    radial-gradient(circle at 18% 18%, rgba(169, 154, 242, 0.14), transparent 9rem),
    radial-gradient(circle at 82% 82%, rgba(88, 208, 181, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.7);
  font-weight: 850;
  line-height: 1.8;
  text-align: center;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.tag-purple {
  background: linear-gradient(135deg, #9279e8, var(--purple));
}

.tag-mint {
  background: linear-gradient(135deg, #69d7c1, #23b99f);
}

.tag-coral {
  background: linear-gradient(135deg, #ff96a0, var(--coral));
}

.site-footer {
  margin-top: 62px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(160, 133, 244, 0.36), transparent 20rem),
    linear-gradient(135deg, #42208a 0%, #2d126b 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 36px;
  align-items: start;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 52px;
}

.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));
}

.footer-brand address {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 750;
  line-height: 1.8;
}

.footer-nav {
  justify-content: flex-start;
  color: #fff;
  padding-top: 12px;
}

.footer-contact {
  min-width: 180px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #fff;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.footer-copy {
  grid-column: 3;
  margin: -18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.contact-dialog {
  width: min(560px, calc(100% - 36px));
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  color: var(--ink);
}

.contact-dialog::backdrop {
  background: rgba(43, 35, 100, 0.34);
  backdrop-filter: blur(8px);
}

.contact-dialog-panel {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 8%, rgba(169, 154, 242, 0.24), transparent 12rem),
    radial-gradient(circle at 10% 88%, rgba(88, 208, 181, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 90px rgba(43, 35, 100, 0.28);
}

.contact-dialog-panel h2 {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 34px;
  line-height: 1.3;
}

.contact-dialog-panel p:not(.section-kicker) {
  margin: 0 0 24px;
  font-weight: 800;
  line-height: 1.8;
}

.dialog-close {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(84, 61, 143, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}

[data-contact-dialog-open] {
  cursor: pointer;
}

.link-external-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 6px;
  vertical-align: -0.12em;
}

.contact-dialog--form {
  width: min(960px, calc(100% - 36px));
}

.contact-dialog--form .contact-dialog-panel {
  max-height: calc(100dvh - 48px);
  padding: 40px 32px 32px;
  overflow-y: auto;
}

.contact-dialog-form-frame {
  margin-top: 20px;
}

.contact-dialog-form-frame iframe {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 720px;
  border: 0;
  background: #fff;
}

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

.dialog-link-grid a {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(84, 61, 143, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(84, 61, 143, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dialog-link-grid a:hover,
.dialog-link-grid a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(84, 61, 143, 0.14);
}

.dialog-link-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dialog-link-grid strong {
  color: var(--purple);
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(var(--max), calc(100% - 48px));
    padding: 12px 0;
  }

  .global-nav {
    display: none;
  }

  .brand img {
    width: 176px;
  }

  .site-header.is-scrolled .brand img {
    width: 158px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .hero-art {
    object-position: 62% center;
  }

  .hero-motion {
    opacity: 0.72;
  }

  .hero-copy {
    margin: 0;
    padding: 126px 24px 0;
    width: min(520px, 100%);
  }

  .mission-card,
  .company-card,
  .profile-card,
  .service-detail-hero {
    grid-template-columns: 1fr;
    padding: 44px 30px;
  }

  .service-detail-main {
    padding-top: 104px;
  }

  .service-management-hero,
  .service-development-hero {
    min-height: calc(100svh - 48px);
    margin-top: -30px;
    padding: 120px 24px 64px;
  }

  .service-development-hero {
    min-height: 100svh;
    margin-top: -104px;
    padding-top: 194px;
  }

  .service-management-hero::before,
  .service-development-hero::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 255, 0.98) 0%, rgba(251, 250, 255, 0.9) 45%, rgba(251, 250, 255, 0.18) 78%, rgba(251, 250, 255, 0.04) 100%),
      radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.94), transparent 20rem);
  }

  .service-detail-art {
    max-width: 360px;
  }

  .service-management-hero-art,
  .service-development-hero-art {
    width: 100%;
    height: 100%;
    object-position: 60% center;
  }

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

  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .diagram-board {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .diagram-pm::after,
  .diagram-work::before,
  .diagram-work::after {
    display: none;
  }

  .diagram-network {
    width: 100%;
  }

  .character-diagram {
    grid-template-columns: 1fr;
  }

  .character-diagram-stage {
    min-height: 460px;
  }

  .character-diagram-art {
    min-height: 420px;
  }

  .detail-panel {
    padding: 44px 30px;
  }

  .consultation-panel {
    padding: 44px 30px;
  }

  .flow-list article {
    grid-template-columns: 92px 1fr;
  }

  .flow-list p {
    grid-column: 1 / -1;
  }

  .value-item:nth-child(3) {
    border-left: 0;
  }

  .value-item {
    padding: 24px;
  }

  .company-art {
    max-width: 520px;
    margin: 0 auto;
  }

  .profile-visual {
    justify-self: center;
  }

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

  .footer-copy {
    grid-column: auto;
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .contact-dialog-panel {
    padding: 34px 20px 24px;
    border-radius: 26px;
  }

  .contact-dialog-panel h2 {
    font-size: 28px;
  }

  .dialog-close {
    top: 18px;
    right: 18px;
  }

  .dialog-link-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dialog-link-grid a {
    min-height: 78px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .site-header {
    gap: 16px;
    top: 12px;
    width: min(100% - 28px, var(--max));
  }

  .site-header::before {
    inset: 0 -8px;
  }

  .header-contact {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .brand img {
    width: 144px;
  }

  .site-header.is-scrolled .brand img {
    width: 128px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-art {
    height: 100%;
    top: 0;
    object-fit: cover;
    object-position: 86% center;
  }

  .hero-motion {
    top: 245px;
    height: 58%;
    opacity: 0.58;
  }

  .hero-ribbon {
    width: 180px;
  }

  .ribbon-a {
    left: -8%;
    top: 58%;
  }

  .ribbon-b {
    right: -10%;
    top: 10%;
  }

  .star-a {
    left: 46%;
    top: 22%;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 24%, rgba(255, 255, 255, 0.3) 44%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0) 74%);
    z-index: 0;
  }

  .hero-copy {
    padding-top: 106px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-button,
  .text-button {
    width: 100%;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
    padding: 42px 0;
  }

  .soft-card {
    border-radius: 34px;
  }

  .mission-card {
    gap: 28px;
  }

  .service-grid,
  .value-card {
    grid-template-columns: 1fr;
  }

  .service-detail-main {
    padding-top: 92px;
  }

  .service-detail-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .service-management-hero,
  .service-development-hero {
    min-height: calc(100svh - 28px);
    padding: 116px 16px 42px;
  }

  .service-development-hero {
    min-height: 100svh;
    margin-top: -92px;
    padding-top: 178px;
  }

  .service-management-hero::before,
  .service-development-hero::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 255, 0.99) 0%, rgba(251, 250, 255, 0.94) 48%, rgba(251, 250, 255, 0.2) 78%, rgba(251, 250, 255, 0.06) 100%),
      radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.95), transparent 16rem);
  }

  .service-detail-copy h1 {
    font-size: 34px;
  }

  .service-detail-copy p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.9;
  }

  .detail-alert {
    padding: 18px 20px;
    font-size: 15px;
    text-align: left;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .service-detail-art {
    max-width: 280px;
  }

  .service-management-hero-art,
  .service-development-hero-art {
    width: 100%;
    height: 100%;
    max-width: none;
    object-position: 62% bottom;
  }

  .detail-grid article {
    min-height: 0;
    padding: 24px;
  }

  .detail-card-art {
    height: 190px;
  }

  .pm-scope-diagram {
    padding: 28px 18px 32px;
  }

  .diagram-lead {
    margin-bottom: 26px;
  }

  .diagram-lead span {
    font-size: 17px;
  }

  .diagram-lead strong {
    font-size: 30px;
  }

  .diagram-box {
    width: 100%;
    min-height: 68px;
    font-size: 17px;
  }

  .diagram-stack {
    width: min(100%, 260px);
    gap: 38px;
  }

  .diagram-stack::before {
    top: 74px;
    height: 44px;
    border-left-width: 4px;
  }

  .diagram-work {
    padding: 20px 18px;
    border-width: 4px;
  }

  .diagram-work h3 {
    font-size: 17px;
  }

  .diagram-work ul {
    padding-left: 20px;
    font-size: 14px;
  }

  .diagram-network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    padding-top: 0;
  }

  .diagram-network::before,
  .diagram-network::after,
  .diagram-node::before {
    display: none;
  }

  .diagram-node {
    min-height: 86px;
    font-size: 15px;
  }

  .character-diagram {
    gap: 22px;
  }

  .character-diagram-stage {
    min-height: 390px;
    padding: 0;
  }

  .character-diagram-art {
    min-height: 360px;
  }

  .character-label {
    min-width: 72px;
    min-height: 34px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .character-center-badge {
    top: 64.8%;
    min-width: 90px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .label-owner {
    left: 50%;
    top: 28%;
    transform: translate(-50%, -50%);
  }

  .label-member {
    left: 19%;
    right: auto;
    top: auto;
    bottom: 5%;
    transform: translate(-50%, 0);
  }

  .label-team {
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, 0);
  }

  .label-vendor {
    left: 81%;
    right: auto;
    bottom: 5%;
    transform: translate(-50%, 0);
  }

  .character-work {
    padding: 20px 18px;
  }

  .flow-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .flow-list span {
    width: fit-content;
  }

  .flow-list p {
    grid-column: auto;
  }

  .faq-list details {
    padding: 20px;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .consultation-panel {
    padding: 28px 18px;
  }

  .external-form-frame {
    min-height: 400px;
  }

  .service-card {
    min-height: 0;
  }

  .value-card {
    padding: 26px 22px;
  }

  .value-item::before {
    width: 190px;
    height: 150px;
  }

  .value-item + .value-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .company-info dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .profile-card {
    gap: 34px;
  }

  .profile-visual {
    width: 220px;
    height: 220px;
    border-width: 8px;
  }

  .news-card {
    padding: 4px 22px;
  }

  .news-row {
    grid-template-columns: 1fr 30px;
    gap: 6px 10px;
    padding: 18px 0;
  }

  .news-row time,
  .news-tag,
  .news-row p {
    grid-column: 1;
  }

  .news-row > span:last-child {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

body.business-page {
  --biz-green: #009486;
  --biz-green-dark: #00766d;
  --biz-navy: #072a55;
  --biz-ink: #333;
  --biz-muted: #707070;
  --biz-soft: #f4f4f4;
  --biz-line: #d8dee6;
  --biz-shadow: 10px 14px 24px rgba(0, 0, 0, 0.16);
  min-width: 320px;
  margin: 0;
  color: var(--biz-ink);
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

.business-page::before,
.business-page::after {
  display: none;
}

.business-page img {
  width: auto;
}

.business-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.business-brand img {
  width: 100px;
  height: auto;
}

.business-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(28px, 3.2vw, 58px);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.business-nav a,
.business-footer nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.business-nav a:hover,
.business-footer nav a:hover {
  color: var(--biz-green);
  transform: translateY(-1px);
}

.business-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  min-height: 30px;
  padding: 0 18px;
  border: 1px solid var(--biz-green-dark);
  border-radius: 3px;
  color: #fff;
  background: var(--biz-green);
  box-shadow: 0 2px 0 var(--biz-green-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.business-header-cta:hover,
.business-main-cta:hover {
  transform: translateY(-2px);
}

.business-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 100vh;
  padding-top: 64px;
  background: #fff;
}

.business-hero-visual {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  min-height: 640px;
  overflow: hidden;
  background: #f4f4f4;
}

.business-page .business-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: businessHeroDrift 11s ease-in-out infinite alternate;
}

.business-page .business-hero-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  opacity: 0.98;
}

.business-hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 72px));
  padding: 48px 0 0 54px;
}

.business-kicker {
  margin: 0 0 2px;
  color: #333;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 900;
  line-height: 1.08;
}

.business-hero-copy h1 {
  margin: 0 0 24px;
  color: var(--biz-green);
  font-size: clamp(58px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.95;
}

.business-hero-copy h1 span {
  display: inline-block;
  color: var(--biz-green);
}

.business-hero-main {
  margin: 0 0 10px;
  color: #333;
  font-size: clamp(24px, 2.4vw, 29px);
  font-weight: 900;
  line-height: 1.45;
}

.business-hero-lead {
  margin: 0 0 28px;
  color: #333;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.85;
}

.business-main-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 312px;
  min-height: 68px;
  padding: 0 34px 0 0;
  color: #fff;
  background: var(--biz-green);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease;
}

.business-main-cta span {
  align-self: stretch;
  display: grid;
  place-items: center;
  width: 104px;
  margin-right: 28px;
  background: #333;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.business-main-cta i {
  position: absolute;
  right: -28px;
  width: 52px;
  height: 1px;
  background: #fff;
}

.business-contact-panel {
  height: 536px;
  overflow: auto;
  padding: 74px 48px 48px;
  background: #fff;
}

.business-contact-panel > p {
  margin: 0 0 48px;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.business-form {
  display: grid;
  gap: 18px;
}

.business-form label {
  display: block;
  color: #30323a;
  font-size: 14px;
  font-weight: 700;
}

.business-form label span {
  color: #df4a43;
}

.business-form input,
.business-form select,
.business-form textarea {
  display: block;
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  border: 1px solid var(--biz-line);
  border-radius: 8px;
  padding: 0 14px;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  font: inherit;
  line-height: 1.4;
}

.business-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.business-form button {
  min-height: 48px;
  margin-top: 8px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--biz-green);
  box-shadow: 0 4px 0 var(--biz-green-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.business-floating-cta {
  position: fixed;
  right: 42px;
  bottom: 32px;
  z-index: 78;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  color: #fff;
  background: var(--biz-green);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease;
}

.business-floating-cta::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 18px -8px 0 -8px #fff, 26px -26px 0 -12px #fff;
}

.business-floating-cta span {
  position: absolute;
  top: -18px;
  left: 16px;
  padding: 6px 12px;
  border: 1px solid var(--biz-navy);
  border-radius: 4px;
  color: var(--biz-navy);
  background: #fff;
  font-size: 16px;
  transform: rotate(-12deg);
}

.business-floating-cta:hover {
  transform: translateY(-4px) rotate(-2deg);
}

.business-section-title {
  text-align: center;
}

.business-section-title p {
  margin: 0 0 18px;
  color: var(--biz-navy);
  font-family: "Familjen Grotesk", "Arial Narrow", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.business-section-title h2 {
  margin: 0;
  color: #3c3c3c;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.5;
}

.business-problem {
  position: relative;
  overflow: hidden;
  padding: 82px 0 120px;
  background: linear-gradient(90deg, #efefef 0 50%, #f9f9f9 50% 100%);
}

.business-problem-lead {
  position: relative;
  width: min(1180px, calc(100% - 64px));
  margin: 72px auto 88px;
  padding: 28px 48px;
  color: #fff;
  background: var(--biz-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.65;
  text-align: center;
}

.business-problem-lead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: 0;
  height: 0;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-top: 38px solid var(--biz-navy);
  transform: translateX(-50%);
}

.business-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: min(980px, calc(100% - 64px));
  margin: 0 auto;
}

.business-problem-grid article {
  display: grid;
  gap: 22px;
}

.business-problem-grid h3 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  margin: 0;
  padding: 14px 76px 14px 92px;
  overflow: hidden;
  color: #fff;
  background: var(--biz-green);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
  word-break: keep-all;
}

.business-problem-grid h3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 76px;
  background: linear-gradient(74deg, transparent 0 34%, #80d8d2 35% 56%, #bde8e5 57% 78%, transparent 79%);
}

.business-problem-grid h3 span {
  position: absolute;
  inset: 0 auto 0 0;
  display: grid;
  place-items: center;
  width: 72px;
  color: #fff;
  background: #333;
  font-size: 18px;
  line-height: 1;
}

.business-problem-grid ul {
  min-height: 300px;
  margin: 0;
  padding: 40px 36px;
  border: 2px solid var(--biz-navy);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--biz-shadow);
  list-style: none;
}

.business-problem-grid li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  color: #333;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.business-problem-grid li + li {
  margin-top: 22px;
}

.business-problem-grid li::before,
.business-reason-grid li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 2px;
  color: #fff;
  background: var(--biz-navy);
  font-size: 12px;
  font-weight: 900;
}

.business-solution {
  position: relative;
  padding: 92px 0 110px;
  background: #fff;
}

.business-solution::before {
  content: "";
  position: absolute;
  top: -94px;
  left: -3%;
  right: -3%;
  height: 150px;
  border-radius: 0 0 50% 50%;
  background: #fff;
}

.business-solution-head {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 64px));
  margin: 0 auto 80px;
  text-align: center;
}

.business-solution-head span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 16px 18px;
  border-radius: 50%;
  background: var(--biz-navy);
}

.business-solution-head h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: var(--biz-navy);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.25;
}

.business-title-logo {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--biz-green);
  font-size: 1.02em;
  line-height: 0.88;
}

.business-title-logo::first-letter {
  color: var(--biz-green);
}

.business-title-logo small {
  display: block;
  min-width: 118px;
  margin-top: 3px;
  padding: 0 8px 1px;
  color: #fff;
  background: #4b4b4b;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.05;
  text-align: center;
}

.business-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  width: min(1100px, calc(100% - 64px));
  margin: 54px auto 0;
}

.business-reason-grid article {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 220px 28px 34px;
  border: 1px solid rgba(0, 148, 134, 0.18);
  border-radius: 4px;
  background: #f8fbfb;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
}

.business-reason-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 184px;
  background: var(--biz-green);
}

.business-reason-grid img {
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 1;
  width: 78%;
  max-height: 138px;
  object-fit: contain;
  transform: translateX(-50%);
}

.business-reason-grid span {
  position: absolute;
  top: 156px;
  left: 28px;
  z-index: 1;
  color: #fff;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.business-reason-grid h3 {
  margin: 0 0 18px;
  color: var(--biz-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.business-reason-grid p {
  margin: 0;
  color: #444;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.business-message {
  position: relative;
  padding: 102px 24px;
  color: #fff;
  background: var(--biz-navy);
  text-align: center;
}

.business-message::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: url("assets/business-wave.svg") center / cover no-repeat;
}

.business-message > * {
  position: relative;
}

.business-message div p {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.business-message h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.35;
}

.business-message img {
  width: min(484px, 70vw);
  margin: 18px auto 38px;
}

.business-message > p {
  margin: 0 auto 22px;
  max-width: 820px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 2;
}

.business-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 48px;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 100px 0;
}

.business-fit-copy {
  position: relative;
  padding: 48px;
  background: #f3f5f7;
}

.business-fit-copy::before,
.business-fit-copy::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--biz-green);
  border-style: solid;
}

.business-fit-copy::before {
  top: 18px;
  left: 18px;
  border-width: 5px 0 0 5px;
}

.business-fit-copy::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 5px 5px 0;
}

.business-fit-copy p {
  margin: 0 0 30px;
  color: var(--biz-navy);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.45;
}

.business-fit-copy h2 {
  margin: 0;
  color: #333;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.8;
}

.business-fit > img {
  width: 100%;
}

.business-talents {
  overflow: hidden;
  padding: 96px 0 110px;
  background: var(--biz-soft);
}

.business-talent-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 330px;
  gap: 28px;
  overflow-x: auto;
  margin-top: 54px;
  padding: 0 max(32px, calc((100vw - 1120px) / 2)) 42px;
  scroll-snap-type: x proximity;
}

.business-talent-track::-webkit-scrollbar {
  height: 10px;
}

.business-talent-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 148, 134, 0.42);
}

.business-talent-track article {
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  scroll-snap-align: center;
}

.business-talent-track img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eaf3f3;
}

.business-talent-track article > p {
  display: inline-block;
  margin: 18px 18px 0;
  padding: 4px 12px;
  color: #fff;
  background: var(--biz-green);
  font-size: 13px;
  font-weight: 900;
}

.business-talent-track h3 {
  min-height: 62px;
  margin: 12px 18px 16px;
  color: var(--biz-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.business-talent-track dl {
  margin: 0;
  padding: 0 18px 26px;
}

.business-talent-track dt {
  margin-top: 14px;
  color: var(--biz-green);
  font-size: 13px;
  font-weight: 900;
}

.business-talent-track dd {
  margin: 4px 0 0;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.business-flow {
  padding: 100px 0 108px;
  background: #fff;
  text-align: center;
}

.business-flow .business-section-title strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--biz-green);
  font-size: 20px;
  font-weight: 900;
}

.business-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, calc(100% - 64px));
  margin: 50px auto 34px;
}

.business-flow-grid article {
  position: relative;
  min-height: 132px;
  padding: 26px 18px 20px;
  border: 2px solid var(--biz-green);
  background: #fff;
}

.business-flow-grid article + article::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--biz-green);
}

.business-flow-grid span {
  display: block;
  color: var(--biz-navy);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.business-flow-grid h3 {
  margin: 16px 0 0;
  color: #333;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  white-space: nowrap;
}

.business-flow > img {
  width: min(720px, calc(100% - 64px));
  margin: 0 auto 28px;
}

.business-flow > p {
  margin: 0;
  color: #333;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.8;
}

.business-faq {
  padding: 96px 0;
  background: var(--biz-soft);
}

.business-faq details {
  width: min(880px, calc(100% - 64px));
  margin: 20px auto 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.business-faq summary {
  cursor: pointer;
  padding: 24px 30px;
  color: var(--biz-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.business-faq p {
  margin: 0;
  padding: 0 30px 28px;
  color: #555;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.business-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(1040px, calc(100% - 64px));
  margin: 96px auto;
  padding: 38px 44px;
  color: #fff;
  background: var(--biz-navy);
  box-shadow: var(--biz-shadow);
}

.business-final-cta > img {
  width: 150px;
}

.business-final-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}

.business-final-cta p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.business-thought {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  align-items: center;
  gap: 54px;
  padding: 90px min(9vw, 120px);
  background: #fff;
}

.business-thought div p:first-child {
  margin: 0 0 16px;
  color: var(--biz-green);
  font-size: 20px;
  font-weight: 900;
}

.business-thought h2 {
  margin: 0 0 24px;
  color: var(--biz-navy);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.3;
}

.business-thought div p:last-child {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}

.business-thought img {
  width: 100%;
}

.business-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 430px);
  gap: 64px;
  padding: 86px min(10vw, 120px) 0;
  color: #fff;
  background: var(--biz-navy) url("assets/business-footer-bg.png") center bottom / cover no-repeat;
}

.business-footer-main > img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.business-footer h2 {
  margin: 28px 0 30px;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.35;
}

.business-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 54px;
  align-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.business-footer > p {
  grid-column: 1 / -1;
  margin: 70px calc(min(10vw, 120px) * -1) 0;
  padding: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  font-size: 11px;
  text-align: center;
}

@keyframes businessHeroDrift {
  from {
    transform: scale(1.02) translate3d(-8px, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(10px, -6px, 0);
  }
}

@media (max-width: 1120px) {
  .business-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 28px;
  }

  .business-nav {
    gap: 20px;
  }

  .business-hero {
    grid-template-columns: 1fr;
  }

  .business-contact-panel {
    height: auto;
    overflow: visible;
    width: min(720px, calc(100% - 40px));
    margin: 0 auto 64px;
    padding: 44px 34px;
    border: 1px solid var(--biz-line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .business-reason-grid,
  .business-final-cta,
  .business-thought,
  .business-footer {
    grid-template-columns: 1fr;
  }

  .business-final-cta {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 840px) {
  .business-header {
    height: 62px;
    padding: 0 18px;
  }

  .business-brand img {
    width: 92px;
  }

  .business-nav {
    display: none;
  }

  .business-header-cta {
    display: none;
  }

  .business-header-cta::before {
    content: "相談する";
    font-size: 12px;
  }

  .business-header-cta span {
    font-size: 12px;
  }

  .business-hero {
    padding-top: 62px;
  }

  .business-hero-visual {
    height: calc(100vh - 62px);
    min-height: 620px;
  }

  .business-hero-photo {
    object-position: 62% center;
  }

  .business-hero-fade {
    width: 100%;
  }

  .business-hero-copy {
    max-width: 350px;
    width: min(100%, calc(100% - 34px));
    padding: 54px 0 0 20px;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.68);
  }

  .business-kicker {
    font-size: 42px;
  }

  .business-hero-copy h1 {
    font-size: 62px;
  }

  .business-hero-main {
    max-width: 320px;
    font-size: 24px;
  }

  .business-hero-lead {
    font-size: 15px;
  }

  .business-main-cta {
    min-width: 282px;
    min-height: 62px;
    font-size: 19px;
  }

  .business-main-cta span {
    width: 96px;
    margin-right: 18px;
    font-size: 12px;
  }

  .business-problem,
  .business-solution,
  .business-talents,
  .business-flow,
  .business-faq {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .business-section-title p {
    font-size: 28px;
  }

  .business-problem-lead,
  .business-problem-grid,
  .business-solution-head,
  .business-reason-grid,
  .business-fit,
  .business-flow-grid,
  .business-flow > img,
  .business-faq details,
  .business-final-cta {
    width: min(100%, calc(100% - 32px));
  }

  .business-problem-lead {
    margin-top: 42px;
    margin-bottom: 58px;
    padding: 22px 18px;
    font-size: 17px;
  }

  .business-problem-grid,
  .business-fit,
  .business-flow-grid {
    grid-template-columns: 1fr;
  }

  .business-problem-grid ul {
    min-height: auto;
    padding: 30px 22px;
  }

  .business-reason-grid {
    gap: 24px;
  }

  .business-reason-grid article {
    min-height: auto;
  }

  .business-message {
    padding: 76px 18px;
  }

  .business-message > p {
    font-size: 16px;
  }

  .business-fit {
    padding: 70px 0;
  }

  .business-fit-copy {
    padding: 36px 24px;
  }

  .business-talent-track {
    grid-auto-columns: 292px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .business-flow-grid article + article::before {
    display: none;
  }

  .business-final-cta {
    margin: 70px auto;
    padding: 34px 20px;
  }

  .business-thought {
    padding: 70px 16px;
  }

  .business-footer {
    padding: 64px 16px 0;
  }

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

  .business-footer > p {
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }

  .business-floating-cta {
    right: 16px;
    bottom: 20px;
    width: 112px;
    height: 112px;
    font-size: 21px;
  }

  .business-floating-cta span {
    top: -14px;
    left: 10px;
    font-size: 13px;
  }
}

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

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

}

body.nekonote-page {
  --nt-green: #009486;
  --nt-green-dark: #007b73;
  --nt-mint: #cfeeed;
  --nt-red: #f24b40;
  --nt-coral: #f58e89;
  --nt-ink: #222;
  --nt-gray: #7c7c7c;
  --nt-soft: #f8f8f8;
  --nt-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  min-width: 320px;
  color: var(--nt-ink);
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

.nekonote-page::before,
.nekonote-page::after {
  display: none;
}

.nekonote-page img {
  width: auto;
}

.nekonote-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 28px;
  height: 80px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
}

.nekonote-brand img {
  width: 98px;
  height: auto;
}

.nekonote-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nekonote-nav a,
.nekonote-footer nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.nekonote-nav a:hover,
.nekonote-footer nav a:hover {
  color: var(--nt-green);
  transform: translateY(-1px);
}

.nekonote-header-cta,
.nekonote-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  background: var(--nt-red);
  box-shadow: 0 6px 0 #2f6f69, 0 16px 24px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nekonote-header-cta {
  min-width: 134px;
  padding: 0 20px;
  box-shadow: none;
  font-size: 13px;
}

.nekonote-header-cta span,
.nekonote-main-cta strong {
  font-size: 28px;
  line-height: 0.7;
}

.nekonote-hero {
  position: relative;
  min-height: 631px;
  margin-top: 0;
  overflow: hidden;
  background: var(--nt-green);
}

.nekonote-page .nekonote-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nekonote-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 148px;
  color: #fff;
}

.nekonote-hero-copy > p:first-child {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.nekonote-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.18;
}

.nekonote-underline {
  position: relative;
  z-index: 2;
  display: block;
  width: min(430px, 48vw);
  max-width: none;
  margin: -24px 0 24px;
  transform-origin: left center;
  animation: nekonoteUnderlineFlick 980ms cubic-bezier(0.18, 0.9, 0.26, 1.16) 420ms both;
}

.nekonote-hero-lead {
  margin: 0 0 44px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.8;
}

.nekonote-main-cta {
  min-width: 306px;
  min-height: 64px;
  padding: 0 26px 0 12px;
  font-size: 24px;
}

.nekonote-main-cta span {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 48px;
  border-radius: 50%;
  color: var(--nt-green);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.18;
  transform: rotate(-7deg);
}

.nekonote-main-cta:hover,
.nekonote-header-cta:hover {
  transform: translateY(-2px);
}

.nekonote-floating-cta {
  position: fixed;
  right: 32px;
  bottom: 42px;
  z-index: 75;
  width: 160px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
  transition: transform 180ms ease;
}

.nekonote-floating-cta:hover {
  transform: translateY(-4px) rotate(-2deg);
}

.nekonote-floating-cta img {
  width: 100%;
}

.nekonote-section-title {
  text-align: center;
}

.nekonote-section-title p {
  margin: 0 0 8px;
  color: var(--nt-coral);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.nekonote-section-title h2 {
  margin: 0;
  color: #777;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.nekonote-reasons {
  position: relative;
  overflow: hidden;
  padding: 72px 0 110px;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(207, 238, 237, 0.42) 58% 68%, transparent 68%),
    repeating-linear-gradient(120deg, rgba(0, 148, 134, 0.045) 0 2px, transparent 2px 36px),
    #fff;
}

.nekonote-reason {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: min(1020px, calc(100% - 64px));
  margin: 48px auto 0;
}

.nekonote-reason.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

.nekonote-reason.is-reverse img {
  grid-column: 2;
}

.nekonote-reason.is-reverse div {
  grid-column: 1;
  grid-row: 1;
}

.nekonote-reason img {
  width: 100%;
  height: 293px;
  object-fit: cover;
  box-shadow: var(--nt-shadow);
}

.nekonote-reason div {
  position: relative;
}

.nekonote-reason span {
  position: absolute;
  top: -18px;
  right: 0;
  color: rgba(73, 105, 107, 0.3);
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
}

.nekonote-reason h3 {
  margin: 0 0 20px;
  color: rgba(54, 99, 102, 0.5);
  font-size: clamp(30px, 3.3vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.nekonote-reason p {
  width: min(100%, 560px);
  margin: 0;
  color: #777;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.9;
}

.nekonote-value {
  position: relative;
  overflow: hidden;
  padding: 112px 0 0;
  text-align: center;
  background:
    linear-gradient(180deg, #fff 0 76%, rgba(207, 238, 237, 0.44) 76% 100%),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(0, 148, 134, 0.035) 72px 74px);
}

.nekonote-value h2 {
  margin: 0 24px 28px;
  color: #376f73;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 900;
  line-height: 1.5;
}

.nekonote-value > p {
  margin: 0 24px 18px;
  color: #111;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.85;
}

.nekonote-feature-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 64px));
  margin: 120px auto 22px;
}

.nekonote-feature-row div {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--nt-red);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  font-size: 20px;
  font-weight: 900;
}

.nekonote-feature-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 0 min(9vw, 120px) 86px;
  background: linear-gradient(180deg, #77d4cf 0%, var(--nt-green) 54%);
}

.nekonote-feature-cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -74px;
  height: 120px;
  background: #fff;
  clip-path: ellipse(64% 58% at 50% 0%);
}

.nekonote-feature-cards article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 28px;
  color: #fff;
}

.nekonote-feature-mobile-label {
  display: none;
}

.nekonote-feature-cards img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
}

.nekonote-feature-cards h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.nekonote-white-cta {
  position: relative;
  z-index: 2;
  width: min(1024px, calc(100% - 64px));
  margin: -20px auto 0;
  padding: 66px 24px 70px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.nekonote-white-cta h2,
.nekonote-white-cta h3 {
  margin: 0 0 28px;
  color: #4e4e4e;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.45;
}

.nekonote-white-cta p {
  margin: 30px 0 0;
  color: #222;
  font-size: 20px;
  font-weight: 900;
}

.nekonote-cat-player {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 70px;
  height: 112px;
  transform: translateX(-50%);
  pointer-events: none;
}

.nekonote-recruit {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background:
    linear-gradient(155deg, rgba(207, 238, 237, 0.72) 0 22%, transparent 22% 100%),
    repeating-linear-gradient(120deg, rgba(0, 148, 134, 0.045) 0 2px, transparent 2px 34px),
    var(--nt-soft);
}

.nekonote-recruit-inner {
  display: grid;
  grid-template-columns: 460px minmax(360px, 480px);
  align-items: start;
  gap: 0;
  width: min(960px, calc(100% - 64px));
  margin: 28px auto 0;
}

.nekonote-bubbles {
  position: relative;
  min-height: 640px;
}

.nekonote-bubbles p {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  width: 365px;
  min-height: 112px;
  margin: 0;
  padding: 34px 36px 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  color: #777;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
  text-align: center;
  overflow: visible;
}

.nekonote-bubbles p::after {
  content: "";
  position: absolute;
  top: calc(100% - 6px);
  left: 38%;
  z-index: 1;
  width: 96px;
  height: 58px;
  border: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 26% 100%);
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.08));
}

.nekonote-bubbles p:nth-child(1)::after {
  left: 34%;
}

.nekonote-bubbles p:nth-child(2)::after {
  left: 38%;
}

.nekonote-bubbles p:nth-child(3)::after {
  left: 42%;
}

.nekonote-bubbles p:nth-child(1) {
  top: 0;
  right: 0;
}

.nekonote-bubbles p:nth-child(2) {
  top: 128px;
  left: 0;
}

.nekonote-bubbles p:nth-child(3) {
  top: 252px;
  right: 0;
}

.nekonote-bubbles img {
  position: absolute;
  z-index: 1;
  left: 95px;
  top: 390px;
  width: 218px;
}

.nekonote-check-list {
  margin: 0;
  padding: 44px 48px;
  border: 7px solid #66c7c1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(18px);
}

.nekonote-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
  color: #707070;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.55;
}

.nekonote-check-list li + li {
  margin-top: 22px;
}

.nekonote-check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 5px;
  border-radius: 7px;
  color: #fff;
  background: var(--nt-coral);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.nekonote-examples {
  position: relative;
  overflow: hidden;
  padding: 104px 0 0;
  background:
    linear-gradient(180deg, #fff 0 34%, rgba(207, 238, 237, 0.52) 34% 56%, #fff 56% 100%);
}

.nekonote-job-marquee {
  overflow: hidden;
  margin-top: 46px;
  padding: 0 0 60px;
  background: linear-gradient(180deg, transparent 0 38%, var(--nt-green) 38% 100%);
}

.nekonote-job-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 0 32px;
  animation: nekonoteJobMarquee 46s linear infinite;
  will-change: transform;
}

.nekonote-job-track:hover {
  animation-play-state: paused;
}

.nekonote-job-track::-webkit-scrollbar {
  height: 10px;
}

.nekonote-job-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 148, 134, 0.45);
}

.nekonote-job {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  flex: 0 0 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.nekonote-job img {
  grid-column: 1 / -1;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.nekonote-job h3 {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  min-height: 76px;
  margin: -76px 0 0;
  padding: 0 20px 14px 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.nekonote-job div {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px 10px;
  padding: 20px 8px 0 28px;
}

.nekonote-job span {
  padding: 8px 12px;
  border-radius: 5px;
  color: #fff;
  background: #7e8e8d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.nekonote-job span:first-child {
  background: #4fc8be;
}

.nekonote-salary {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 3px;
  min-width: 126px;
  margin: 20px 16px 0 0;
  padding: 8px 0 9px;
  border-top: 5px solid #45c7bd;
  border-bottom: 5px solid #45c7bd;
  color: #3c4a4b;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.nekonote-salary strong {
  color: #3c4a4b;
  font-size: 46px;
}

.nekonote-job > p:last-child {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  min-height: 176px;
  margin: 0;
  padding: 30px 22px 34px 28px;
  color: #333;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.7;
}

.nekonote-steps {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 148, 134, 0.04) 0 2px, transparent 2px 38px),
    #fff;
  text-align: center;
}

.nekonote-steps .nekonote-section-title strong {
  display: inline-block;
  margin-top: 22px;
  padding: 18px 56px;
  color: #fff;
  background: var(--nt-red);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 53% 76%, 50% 100%, 47% 76%, 0 76%);
}

.nekonote-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  width: min(900px, calc(100% - 64px));
  margin: 42px auto 44px;
}

.nekonote-step-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.nekonote-step-grid span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: #444;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.nekonote-step-grid h3 {
  margin: 0;
  color: #4c4c4c;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.nekonote-step-grid img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.nekonote-step-message {
  margin: 0;
  color: #111;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.8;
}

.nekonote-faq {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    linear-gradient(25deg, rgba(207, 238, 237, 0.84) 0 28%, transparent 28% 100%),
    repeating-linear-gradient(90deg, rgba(0, 148, 134, 0.035) 0 2px, transparent 2px 44px),
    var(--nt-soft);
}

.nekonote-faq details {
  width: min(860px, calc(100% - 64px));
  margin: 20px auto 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.nekonote-faq summary {
  cursor: pointer;
  padding: 24px 28px;
  color: #3e3e3e;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.nekonote-faq p {
  margin: 0;
  padding: 0 28px 26px;
  color: #555;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.nekonote-mid-cta {
  margin: 0 auto;
  transform: translateY(72px);
}

.nekonote-mid-cta.reveal {
  transform: translateY(110px);
}

.nekonote-mid-cta.reveal.is-visible {
  transform: translateY(72px);
}

.nekonote-thoughts {
  padding: 170px 0 96px;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.38) 0 2px, transparent 2px 40px),
    linear-gradient(180deg, #fff 0 28%, var(--nt-mint) 28% 100%);
}

.nekonote-registration {
  padding: 96px 0 110px;
  background:
    linear-gradient(145deg, rgba(207, 238, 237, 0.76) 0 32%, transparent 32% 100%),
    repeating-linear-gradient(120deg, rgba(0, 148, 134, 0.045) 0 2px, transparent 2px 36px),
    #fff;
  scroll-margin-top: 100px;
}

.nekonote-form {
  width: min(900px, calc(100% - 64px));
  margin: 40px auto 0;
  border: 6px solid #66c7c1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.nekonote-form-embed {
  overflow: hidden;
  padding: 34px;
}

.nekonote-form-iframe {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 720px;
  border: 0;
  background: #fff;
}

.nekonote-form-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 36px;
  border: 2px dashed rgba(0, 148, 134, 0.22);
  border-radius: 12px;
  color: #4e4e4e;
  background:
    repeating-linear-gradient(120deg, rgba(0, 148, 134, 0.035) 0 2px, transparent 2px 34px),
    #fff;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
}

.nekonote-form-placeholder p {
  margin: 0 0 18px;
}

.nekonote-form-placeholder a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--nt-red);
  box-shadow: 0 5px 0 #2f6f69;
  font-weight: 900;
}

.nekonote-script {
  width: min(1000px, calc(100% - 64px));
  margin: 0 auto 24px;
  color: var(--nt-red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(48px, 7vw, 72px);
  font-style: italic;
  line-height: 1;
}

.nekonote-thoughts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
  width: min(1000px, calc(100% - 64px));
  margin: 0 auto;
}

.nekonote-thoughts-grid img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  box-shadow: var(--nt-shadow);
}

.nekonote-thoughts-copy h2,
.nekonote-thoughts-copy p {
  margin: 0 0 16px;
  color: #101010;
  font-size: 17px;
  font-weight: 900;
  line-height: 2.1;
}

.nekonote-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 410px);
  gap: 60px;
  padding: 90px min(10vw, 120px) 0;
  background: #fff;
}

.nekonote-footer > div img {
  width: 190px;
}

.nekonote-footer h2 {
  margin: 28px 0 28px;
  color: #496f73;
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.35;
}

.nekonote-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 64px;
  align-content: center;
  color: #222;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.nekonote-footer > p {
  grid-column: 1 / -1;
  margin: 70px calc(min(10vw, 120px) * -1) 0;
  padding: 16px;
  color: #fff;
  background: var(--nt-green);
  font-size: 11px;
  text-align: center;
}

@keyframes nekonoteUnderlineFlick {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: scaleX(0.72) translateY(5px) rotate(-1.8deg);
  }

  58% {
    clip-path: inset(0 0 0 0);
    transform: scaleX(1.06) translateY(-1px) rotate(0.8deg);
  }

  78% {
    transform: scaleX(0.98) translateY(1px) rotate(-0.35deg);
  }

  100% {
    clip-path: inset(0 0 0 0);
    transform: scaleX(1) translateY(0) rotate(0);
  }
}

@keyframes nekonoteJobMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .nekonote-header {
    grid-template-columns: auto 1fr;
    height: 72px;
    padding: 0 18px;
  }

  .nekonote-nav {
    display: none;
  }

  .nekonote-header-cta {
    justify-self: end;
  }

  .nekonote-hero {
    min-height: 560px;
  }

  .nekonote-page .nekonote-hero-bg {
    object-position: 58% top;
  }

  .nekonote-hero-copy {
    width: min(100%, calc(100% - 40px));
    padding-top: 124px;
  }

  .nekonote-hero-copy h1 {
    max-width: 560px;
  }

  .nekonote-reason,
  .nekonote-reason.is-reverse,
  .nekonote-recruit-inner,
  .nekonote-thoughts-grid,
  .nekonote-form,
  .nekonote-footer {
    grid-template-columns: 1fr;
  }

  .nekonote-reason.is-reverse img,
  .nekonote-reason.is-reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .nekonote-feature-row,
  .nekonote-feature-cards {
    grid-template-columns: 1fr;
  }

  .nekonote-feature-row {
    margin-top: 70px;
  }

  .nekonote-feature-cards {
    gap: 34px;
    padding-top: 40px;
  }

  .nekonote-step-grid {
    gap: 28px;
  }

  .nekonote-floating-cta {
    right: 16px;
    bottom: 22px;
    width: 132px;
  }
}

@media (max-width: 640px) {
  .nekonote-header {
    height: 66px;
  }

  .nekonote-brand img {
    width: 84px;
  }

  .nekonote-header-cta {
    min-width: 118px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nekonote-hero {
    min-height: 640px;
  }

  .nekonote-page .nekonote-hero-bg {
    object-position: 68% top;
  }

  .nekonote-hero-copy {
    padding-top: 98px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
  }

  .nekonote-hero-copy > p:first-child {
    font-size: 18px;
  }

  .nekonote-hero-copy h1 {
    font-size: 46px;
  }

  .nekonote-underline {
    width: 310px;
  }

  .nekonote-hero-lead {
    font-size: 14px;
  }

  .nekonote-main-cta {
    min-width: 248px;
    min-height: 58px;
    font-size: 19px;
  }

  .nekonote-main-cta span {
    width: 52px;
    height: 44px;
    font-size: 12px;
  }

  .nekonote-reasons,
  .nekonote-value,
  .nekonote-recruit,
  .nekonote-examples,
  .nekonote-steps,
  .nekonote-faq,
  .nekonote-registration {
    padding-top: 70px;
  }

  .nekonote-section-title h2 {
    font-size: 28px;
  }

  .nekonote-reason,
  .nekonote-recruit-inner,
  .nekonote-step-grid,
  .nekonote-thoughts-grid,
  .nekonote-footer {
    width: min(100%, calc(100% - 32px));
  }

  .nekonote-reason img {
    height: 220px;
  }

  .nekonote-reason span {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 48px;
  }

  .nekonote-reason h3 {
    font-size: 27px;
  }

  .nekonote-reason p {
    font-size: 16px;
  }

  .nekonote-feature-row {
    display: none;
  }

  .nekonote-feature-cards {
    gap: 46px;
    padding-top: 0;
  }

  .nekonote-feature-cards article {
    gap: 24px;
  }

  .nekonote-feature-mobile-label {
    display: grid;
    place-items: center;
    width: min(100%, calc(100vw - 32px));
    min-height: 58px;
    margin: 0 auto 8px;
    padding: 0 24px;
    color: #fff;
    background: var(--nt-red);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
  }

  .nekonote-feature-cards::before {
    display: none;
  }

  .nekonote-white-cta,
  .nekonote-faq details,
  .nekonote-form {
    width: min(100%, calc(100% - 32px));
  }

  .nekonote-recruit-inner {
    gap: 24px;
  }

  .nekonote-bubbles {
    min-height: 650px;
  }

  .nekonote-bubbles p {
    width: min(280px, 84vw);
    min-height: 66px;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .nekonote-bubbles p:nth-child(1) {
    right: 0;
  }

  .nekonote-bubbles p:nth-child(2) {
    left: 0;
  }

  .nekonote-bubbles p:nth-child(3) {
    right: 0;
  }

  .nekonote-bubbles img {
    left: 32px;
    width: 190px;
  }

  .nekonote-check-list {
    padding: 28px 22px;
  }

  .nekonote-check-list li {
    font-size: 17px;
  }

  .nekonote-job-track {
    gap: 22px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nekonote-job {
    flex-basis: 300px;
  }

  .nekonote-job h3 {
    padding-left: 24px;
    font-size: 16px;
  }

  .nekonote-job div {
    gap: 8px;
    padding: 16px 8px 0 24px;
  }

  .nekonote-job span {
    padding: 7px 10px;
    font-size: 13px;
  }

  .nekonote-salary {
    min-width: 118px;
    margin: 16px 12px 0 0;
    font-size: 14px;
  }

  .nekonote-salary strong {
    font-size: 38px;
  }

  .nekonote-job > p:last-child {
    min-height: 150px;
    padding: 22px 18px 28px 24px;
    font-size: 15px;
  }

  .nekonote-step-grid {
    grid-template-columns: 1fr;
  }

  .nekonote-steps .nekonote-section-title strong {
    width: min(100%, calc(100% - 32px));
    padding: 14px 16px 22px;
    font-size: 15px;
    line-height: 1.35;
  }

  .nekonote-thoughts {
    padding-top: 130px;
  }

  .nekonote-thoughts-grid > img:first-of-type {
    display: none;
  }

  .nekonote-script {
    width: min(100%, calc(100% - 32px));
  }

  .nekonote-footer {
    padding: 64px 16px 0;
  }

  .nekonote-form {
    padding: 28px 20px;
  }

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

  .nekonote-footer > p {
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }
}

body.nekonote-ai-page {
  --ai-teal: #008f8b;
  --ai-teal-dark: #006f70;
  --ai-teal-soft: #dff4f3;
  --ai-ink: #101820;
  --ai-muted: #5f6d73;
  --ai-line: rgba(0, 143, 139, 0.18);
  --ai-paper: #ffffff;
  --ai-bg: #f7fbfb;
  --ai-shadow: 0 14px 34px rgba(18, 44, 52, 0.12);
  min-width: 320px;
  margin: 0;
  color: var(--ai-ink);
  background: #fff url("assets/nekonote-ai-page-bg.webp") top center / 100% auto repeat-y;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.nekonote-ai-page::before,
.nekonote-ai-page::after {
  display: none;
}

.nekonote-ai-page *,
.nekonote-ai-page *::before,
.nekonote-ai-page *::after {
  box-sizing: border-box;
}

.nekonote-ai-page img {
  width: auto;
  max-width: 100%;
}

.ai-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

@keyframes aiFadeUp {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 28px, 0);
  }

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

@keyframes aiHeroBreath {
  from {
    transform: scale(calc(var(--ai-hero-scale, 1.2) + 0.035));
  }

  to {
    transform: scale(var(--ai-hero-scale, 1.2));
  }
}

@keyframes aiCtaShine {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }

  40%,
  to {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes aiIconPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes aiLinePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.78);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes aiArrowPulse {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

@keyframes aiFaqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: padding 240ms ease, transform 240ms ease;
}

.ai-header::before {
  content: "";
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 18px 44px rgba(18, 44, 52, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.ai-header.is-scrolled {
  padding: 8px 0;
}

.ai-header.is-scrolled::before {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(18, 44, 52, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ai-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transform: translateX(10px);
}

.ai-brand img {
  width: 132px;
  height: auto;
  transition: width 240ms ease, transform 180ms ease, opacity 180ms ease;
}

.ai-brand:hover img {
  transform: translateY(-1px);
}

.ai-header.is-scrolled .ai-brand img {
  width: 118px;
}

.ai-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.ai-nav a,
.ai-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.ai-nav a:hover,
.ai-footer a:hover {
  color: var(--ai-teal);
  transform: translateY(-1px);
}

.ai-header-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--ai-teal), var(--ai-teal-dark));
  box-shadow: 0 10px 22px rgba(0, 111, 112, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 320ms ease, filter 220ms ease;
}

.ai-header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.55) 50%, transparent 72%);
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 1;
  transition: transform 750ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ai-header-cta:hover::before,
.ai-header-cta:focus-visible::before {
  transform: translateX(110%);
}

.ai-header-cta > * {
  position: relative;
  z-index: 2;
}

.ai-header-cta span {
  display: inline-block;
  transition: transform 220ms ease;
}

.ai-header-cta:hover span,
.ai-header-cta:focus-visible span {
  transform: translateX(4px);
}

.ai-header-cta:focus-visible {
  outline: none;
  box-shadow: 0 14px 32px rgba(15, 182, 168, 0.42), 0 0 0 3px rgba(15, 182, 168, 0.35);
}

.ai-floating-cta {
  display: none;
}

.ai-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #f7f7f7;
  isolation: isolate;
}

.ai-hero::after {
  content: none;
}

.nekonote-ai-page .ai-hero-image {
  --ai-hero-scale: 1.2;
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--ai-hero-scale));
  animation: aiHeroBreath 14s ease-in-out infinite alternate;
  will-change: transform;
}

.ai-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100% - 48px));
  padding: 86px 0 40px;
  text-align: center;
}

.ai-hero-content::before {
  content: none;
}

.ai-hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 0 34px;
  padding: 0 56px;
  border: 2px solid #17191a;
  background: rgba(255, 255, 255, 0.78);
  color: #161b1d;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1;
  animation: aiFadeUp 680ms 80ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ai-hero h1 {
  margin: 0;
  color: #030608;
  font-size: clamp(56px, 5.65vw, 92px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(255, 255, 255, 0.76);
  animation: aiFadeUp 760ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ai-hero h1 span {
  color: var(--ai-teal);
  font-size: 1.12em;
}

.ai-hero-strips {
  display: grid;
  justify-items: start;
  gap: 8px;
  width: min(690px, 100%);
  margin: 28px 0 34px;
  animation: aiFadeUp 760ms 300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ai-hero-strips p {
  position: relative;
  width: fit-content;
  min-height: 38px;
  margin: 0;
  padding: 7px 48px 8px 42px;
  clip-path: polygon(17px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  color: #fff;
  background: #070a0c;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.18);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ai-hero-strips p::after {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  width: 7px;
  height: 100%;
  background: var(--ai-teal);
  transform: skewX(-18deg);
}

.ai-hero-strips p:first-child {
  width: fit-content;
}

.ai-hero-strips p:last-child {
  width: fit-content;
  margin-left: 38px;
}

.ai-main-cta,
.ai-secondary-cta,
.ai-white-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 70px;
  border: 0;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ai-main-cta {
  min-width: min(520px, 100%);
  min-height: 82px;
  padding: 0 38px 0 36px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #009c95, #007a78);
  box-shadow: 0 22px 30px rgba(0, 70, 72, 0.28);
  font-size: clamp(21px, 1.85vw, 30px);
  letter-spacing: 0.03em;
  overflow: hidden;
  animation: aiFadeUp 760ms 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ai-main-cta::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: aiCtaShine 3.6s 1.2s ease-in-out infinite;
  pointer-events: none;
}

.ai-cta-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  color: rgba(255, 255, 255, 0.94);
  animation: aiIconPulse 2.8s ease-in-out infinite;
}

.ai-main-cta span,
.ai-white-cta span,
.ai-secondary-cta span {
  font-size: 1.38em;
  line-height: 0.7;
}

.ai-main-cta:hover,
.ai-header-cta:hover,
.ai-secondary-cta:hover,
.ai-white-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 70, 72, 0.24);
}

.ai-header-cta:hover {
  box-shadow: 0 18px 38px rgba(15, 182, 168, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  filter: brightness(1.04) saturate(1.06);
}

.ai-header-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 70, 72, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: brightness(0.98);
}

.ai-hero-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 34px 0 0;
  color: #161b1d;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: aiFadeUp 760ms 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ai-hero-note::before,
.ai-hero-note::after {
  content: "";
  flex: 0 0 94px;
  height: 1px;
  background: rgba(9, 14, 16, 0.5);
}

.ai-hero-note span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 30px;
  margin-right: 2px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='30' viewBox='0 0 26 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1.5 23 6.5V14c0 6.7-4.2 11.2-10 14-5.8-2.8-10-7.3-10-14V6.5l10-5Z' fill='%23008f8b'/%3E%3Cpath d='m8.2 14.8 3.3 3.4 6.7-8' fill='none' stroke='white' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  vertical-align: middle;
}

.ai-hero-note span::before {
  content: none;
}

.ai-hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1040px, calc(100% - 64px));
  margin: -34px auto 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 35, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(18, 44, 52, 0.14);
}

.ai-hero-stats article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 128px;
  padding: 26px 22px;
  border-right: 1px solid rgba(10, 40, 44, 0.11);
  transition: background 220ms ease;
}

.ai-hero-stats article:last-child {
  border-right: 0;
}

.ai-hero-stats article:hover {
  background: rgba(223, 244, 243, 0.45);
}

.ai-hero-stats .ai-line-icon {
  width: 50px;
  height: 50px;
}

.ai-hero-stats .ai-stat-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.ai-hero-stats p {
  margin: 0 0 2px;
  color: #425257;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
}

.ai-hero-stats strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ai-teal);
  font-size: 38px;
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
}

.ai-hero-stats strong span {
  color: #102128;
  font-size: 17px;
  font-weight: 950;
}

.ai-hero-stats small {
  display: block;
  margin-top: 5px;
  color: #7d898e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.ai-section {
  position: relative;
  scroll-margin-top: 96px;
  padding: 66px clamp(20px, 4vw, 72px);
}

.ai-thoughts,
.ai-entry-panel,
.ai-bottom-cta {
  scroll-margin-top: 96px;
}

.ai-title {
  display: grid;
  grid-template-columns: 48px auto 48px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0 auto 34px;
  color: #111;
  text-align: center;
}

.ai-title span {
  display: block;
  height: 2px;
  background: var(--ai-teal);
  transform-origin: center;
  animation: aiLinePulse 2.8s ease-in-out infinite;
}

.ai-title span:last-child {
  animation-delay: 360ms;
}

.ai-title h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 950;
  line-height: 1.4;
  letter-spacing: 0;
}

.ai-reasons {
  padding-top: 62px;
  padding-bottom: 84px;
  background: transparent;
}

.ai-reason-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  width: min(1020px, 100%);
  margin: 0 auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ai-reason-item {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 0;
  padding: 0;
  border-right: 0;
  background: transparent;
  transition: none;
}

.ai-reason-item.ai-reveal {
  transition: opacity 1200ms ease, transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ai-reason-item.ai-reveal:nth-child(2) {
  transition-delay: 160ms;
}

.ai-reason-item.ai-reveal:nth-child(3) {
  transition-delay: 320ms;
}

.ai-reason-item.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.ai-reason-item.is-reverse .ai-card-image {
  grid-column: 2;
}

.ai-reason-item.is-reverse div {
  grid-column: 1;
  grid-row: 1;
}

.ai-reason-card .ai-card-image {
  display: block;
  width: 100%;
  height: 290px;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  box-shadow: 0 18px 36px rgba(18, 44, 52, 0.12);
  transition: none;
}

.ai-reason-item div {
  position: relative;
  min-height: 0;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ai-reason-item div > span {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(0, 143, 139, 0.18);
  font-size: clamp(176px, 20vw, 264px);
  font-weight: 950;
  line-height: 1;
}

.ai-reason-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 0 18px !important;
  padding: 0 20px;
  border: 2px solid var(--ai-teal);
  border-radius: 4px;
  color: var(--ai-teal) !important;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(0, 111, 112, 0.08);
  font-size: clamp(18px, 1.8vw, 24px) !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.ai-line-icon {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--ai-teal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-card-image {
  display: block;
  width: min(170px, 100%);
  height: 148px;
  margin: 0 auto 18px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
  transition: none;
}

.ai-reason-card article:hover .ai-card-image,
.ai-value-grid article:hover .ai-card-image {
  filter: none;
}

.ai-reason-card h3,
.ai-value-grid h3,
.ai-flow-grid h3 {
  margin: 0 0 16px;
  color: #111;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.65;
  letter-spacing: 0;
}

.ai-reason-card h3 {
  margin-bottom: 16px;
  color: var(--ai-ink);
  font-size: clamp(28px, 3.1vw, 38px);
  line-height: 1.35;
}

.ai-reason-card p,
.ai-value-grid p,
.ai-flow-grid p,
.ai-proof-copy p {
  margin: 0;
  color: #243238;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
}

.ai-reason-card div > p:last-child {
  width: min(100%, 560px);
  color: #777;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.9;
}

.ai-hero-stats article:nth-child(2) strong {
  font-size: 28px;
}

.ai-value {
  overflow: hidden;
  padding-top: 74px;
  padding-bottom: 74px;
  background: transparent;
}

.ai-value::before,
.ai-value::after,
.ai-faq::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ai-value::before {
  display: none;
  right: -80px;
  top: 28px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(0, 143, 139, 0.18);
  border-radius: 50%;
}

.ai-value::after {
  display: none;
  right: -38px;
  top: 92px;
  width: 210px;
  height: 46px;
  background: rgba(0, 143, 139, 0.17);
  transform: rotate(-38deg);
}

.ai-value h2 {
  width: min(1180px, 100%);
  margin: 0 auto 38px;
  color: #101820;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.45;
  letter-spacing: 0;
}

.ai-value h2::first-letter {
  color: var(--ai-teal);
}

.ai-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ai-value-grid article {
  position: relative;
  min-height: 210px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(9, 35, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ai-shadow);
  text-align: center;
  transition: border-color 220ms ease, background 220ms ease;
}

.ai-value-grid article:first-child {
  border-radius: 8px;
}

.ai-value-grid article:last-child {
  border-radius: 8px;
}

.ai-value-grid article:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -34px;
  z-index: 2;
  width: 34px;
  color: var(--ai-teal);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
  animation: aiArrowPulse 1.8s ease-in-out infinite;
}

.ai-value-grid article:hover {
  border-color: rgba(0, 143, 139, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.ai-value-grid .ai-line-icon {
  width: 58px;
  height: 58px;
}

.ai-proof {
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: transparent;
}

.ai-proof-copy {
  justify-self: end;
  width: min(100%, 300px);
}

.ai-proof-copy h2 {
  margin: 0 0 18px;
  color: var(--ai-teal);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 950;
  line-height: 1.45;
}

.ai-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(830px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ai-shadow);
}

.ai-proof-stats article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 18px;
  min-height: 146px;
  padding: 26px 30px;
  border-right: 1px solid rgba(10, 40, 44, 0.12);
  transition: background 220ms ease;
}

.ai-proof-stats article:last-child {
  border-right: 0;
}

.ai-proof-stats article:hover {
  background: rgba(223, 244, 243, 0.42);
}

.ai-proof-stats .ai-line-icon {
  grid-row: 1 / 4;
}

.ai-proof-stats p {
  margin: 0;
  color: #59676d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.ai-proof-stats strong {
  color: var(--ai-teal);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.08;
}

.ai-proof-stats span {
  color: #2c383d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.ai-flow {
  padding-top: 60px;
  padding-bottom: 70px;
  background: transparent;
}

.ai-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: visible;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.ai-flow-grid article {
  position: relative;
  min-height: 218px;
  padding: 30px 22px 26px;
  border: 1px solid rgba(9, 35, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--ai-shadow);
  text-align: center;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, background 220ms ease;
}

.ai-flow-grid article:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -30px;
  z-index: 2;
  width: 30px;
  color: var(--ai-teal);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
  animation: aiArrowPulse 1.8s ease-in-out infinite;
}

.ai-flow-grid article:hover {
  border-color: rgba(0, 143, 139, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.ai-flow-grid b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--ai-teal-dark);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.ai-flow-grid .ai-line-icon {
  width: 56px;
  height: 56px;
}

.ai-flow-image {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: none;
}

.ai-flow-grid article:hover .ai-flow-image {
  transform: none;
}

.ai-flow-grid h3 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 15px;
}

.ai-flow-grid p {
  font-size: 12px;
}

.ai-secondary-cta {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--ai-teal), var(--ai-teal-dark));
  box-shadow: 0 10px 20px rgba(0, 111, 112, 0.18);
  font-size: 14px;
}

.ai-jobs {
  padding-top: 66px;
  padding-bottom: 72px;
  background: transparent;
}

.ai-job-marquee {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.ai-job-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: aiJobMarquee 55s linear infinite;
}

.ai-job-track:hover {
  animation-play-state: paused;
}

@keyframes aiJobMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.ai-job-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(9, 35, 39, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(18, 44, 52, 0.08);
  transition: border-color 220ms ease, background 220ms ease;
}

.ai-job-card img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  transition: none;
}

.ai-job-card:hover {
  border-color: rgba(0, 143, 139, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.ai-job-card:hover img {
  transform: none;
}

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

.ai-job-card h3 {
  min-height: 31px;
  margin: 0 0 10px;
  color: var(--ai-teal-dark);
  font-size: 23px;
  font-weight: 950;
  line-height: 1.2;
}

.ai-job-card h4 {
  min-height: 48px;
  margin: 0 0 12px;
  color: #111;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.6;
}

.ai-job-card p {
  margin: 0;
  color: #243238;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
}

.ai-job-salary {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  margin-top: auto !important;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--ai-teal);
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.ai-faq {
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 58px;
  background: transparent;
}

.ai-faq::before {
  display: none;
  left: -120px;
  top: 90px;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(0, 143, 139, 0.14);
  border-radius: 50%;
}

.ai-faq-layout {
  display: block;
  width: min(820px, 100%);
  margin: 0 auto;
}

.ai-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ai-faq details {
  border: 1px solid rgba(10, 40, 44, 0.08);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 44, 52, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ai-faq details:hover {
  border-color: rgba(0, 143, 139, 0.18);
  box-shadow: 0 14px 26px rgba(18, 44, 52, 0.1);
}

.ai-faq summary {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 13px 16px;
  color: #223237;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.5;
  list-style: none;
}

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

.ai-faq summary::before {
  content: "Q";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ai-teal);
  border-radius: 50%;
  color: var(--ai-teal);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.ai-faq summary::after {
  content: "+";
  color: var(--ai-teal);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.ai-faq details[open] summary::after {
  content: "-";
}

.ai-faq details p {
  margin: 0;
  padding: 0 16px 16px 48px;
  color: #4c5b61;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.ai-faq details[open] p {
  animation: aiFaqOpen 220ms ease both;
}

.ai-faq-layout img {
  width: 100%;
  align-self: end;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.ai-intro-body {
  width: min(1020px, 100%);
  margin: 0 auto;
  text-align: left;
}

.ai-intro .ai-intro-logo {
  display: block;
  width: 150px;
  height: auto;
  max-width: 150px;
  margin: 0 auto 24px;
}

.ai-intro-text {
  margin: 0;
  color: #16242a;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

.ai-intro-text strong {
  color: var(--ai-teal-dark, #0a8276);
  font-weight: 900;
}

@media (max-width: 720px) {
  .ai-intro .ai-intro-logo {
    width: 120px;
    max-width: 120px;
    margin-bottom: 18px;
  }
}

.ai-thoughts {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px clamp(28px, 8vw, 110px);
  border: 1px solid rgba(12, 28, 32, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.ai-thoughts-copy h2 {
  margin: 0 0 14px;
  color: var(--ai-teal);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 950;
  line-height: 1.15;
}

.ai-thoughts-copy p {
  margin: 0 0 24px;
  color: #16242a;
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
}

.ai-thoughts > img {
  width: 100%;
  height: clamp(220px, 25vw, 340px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--ai-shadow);
  transition: none;
}

.ai-thoughts > img:hover {
  box-shadow: var(--ai-shadow);
}

@media (min-width: 981px) {
  .ai-thoughts {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
  }

  .ai-thoughts-copy {
    position: relative;
    z-index: 2;
    width: min(800px, 76vw);
  }

  .ai-thoughts-copy p {
    margin-bottom: 0;
  }

  .ai-thoughts > img {
    position: absolute;
    z-index: 1;
    top: 56%;
    right: clamp(38px, 7vw, 96px);
    width: min(540px, 45vw);
    transform: translateY(-50%);
  }

  .ai-thoughts > img.ai-reveal {
    transform: translateY(calc(-50% + 38px));
  }

  .ai-thoughts > img.ai-reveal.is-visible {
    transform: translateY(-50%);
  }
}

.ai-advisors {
  padding-top: 64px;
  padding-bottom: 70px;
  background: rgba(247, 251, 251, 0.78);
}

.ai-advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.ai-advisor-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(9, 35, 39, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--ai-shadow);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.ai-advisor-card.ai-reveal:nth-child(2) {
  transition-delay: 140ms;
}

.ai-advisor-card:hover {
  border-color: rgba(0, 143, 139, 0.2);
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 44, 52, 0.14);
}

.ai-advisor-visual {
  display: flex;
  justify-content: center;
}

.ai-advisor-icon {
  width: 128px;
  height: 128px;
  padding: 18px;
  border: 1px solid rgba(0, 143, 139, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(223, 244, 243, 0.92), rgba(255, 255, 255, 0.98));
  object-fit: contain;
}

.ai-advisor-card:nth-child(2) .ai-advisor-icon {
  background:
    linear-gradient(135deg, rgba(255, 194, 90, 0.24), rgba(255, 255, 255, 0.98));
}

.ai-advisor-icon.is-profile-icon {
  padding: 0;
  border-color: rgba(9, 35, 39, 0.08);
  border-radius: 24px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(18, 44, 52, 0.12);
}

.ai-advisor-body > p {
  margin: 0;
  color: #4c5b61;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
}

.ai-advisor-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.ai-advisor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(9, 35, 39, 0.08);
  border-radius: 6px;
  background: #fff;
}

.nekonote-ai-page .ai-company-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 30px;
  object-fit: contain;
}

.nekonote-ai-page .ai-company-logo.is-recruit {
  height: 32px;
}

.nekonote-ai-page .ai-company-logo.is-salesforce {
  height: 38px;
}

.ai-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  padding: 42px clamp(28px, 9vw, 130px) 48px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.ai-entry-panel h2 {
  margin: 0 0 12px;
  color: var(--ai-teal-dark);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 950;
  line-height: 1.5;
}

.ai-entry-panel p {
  margin: 0 0 22px;
  color: #27373d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.ai-entry-form-embed {
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgba(9, 35, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(18, 44, 52, 0.12);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.ai-entry-form-embed:hover {
  border-color: rgba(0, 143, 139, 0.22);
  box-shadow: 0 22px 44px rgba(18, 44, 52, 0.14);
}

.ai-entry-form-iframe {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 720px;
  border: 0;
  background: #fff;
}

.ai-thanks-page {
  background-color: #f7fbfb;
  overflow-x: clip;
}

.ai-thanks-main {
  padding-top: 0;
}

.ai-thanks-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  padding: 92px clamp(28px, 5.8vw, 88px) 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 244, 243, 0.72)),
    url("assets/nekonote-ai-section-bg.png") center / cover no-repeat;
  text-align: center;
}

.ai-thanks-copy {
  width: 100%;
  min-width: 0;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ai-thanks-hero > .ai-calendar-hero-panel {
  min-width: 0;
  max-width: 100%;
}

.ai-thanks-copy .ai-thanks-mark {
  margin-left: auto;
  margin-right: auto;
}

.ai-thanks-copy > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.ai-thanks-label,
.ai-thanks-card-label,
.ai-calendar-heading p {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--ai-teal-dark);
  background: rgba(0, 143, 139, 0.1);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ai-thanks-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--ai-teal), var(--ai-teal-dark));
  box-shadow: 0 18px 38px rgba(0, 111, 112, 0.24);
}

.ai-thanks-mark svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.ai-thanks-mark circle {
  opacity: 0.18;
}

.ai-thanks-copy h1 {
  max-width: 100%;
  margin: 0 0 12px;
  color: var(--ai-ink);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.ai-thanks-copy h1 span {
  display: inline;
  white-space: normal;
}

.ai-thanks-copy > p:last-child {
  max-width: 640px;
  margin: 0;
  color: #435157;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.75;
}

.ai-thanks-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(9, 35, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(18, 44, 52, 0.14);
}

.ai-thanks-next {
  width: min(1040px, calc(100% - 56px));
  margin: 48px auto;
}

.ai-thanks-next .ai-thanks-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-thanks-card h2 {
  margin: 0 0 22px;
  color: var(--ai-teal-dark);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 950;
  line-height: 1.48;
}

.ai-thanks-steps {
  display: grid;
  gap: 14px;
}

.ai-thanks-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(0, 143, 139, 0.12);
  border-radius: 8px;
  background: rgba(247, 251, 251, 0.9);
}

.ai-thanks-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--ai-teal);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.ai-thanks-steps h3 {
  margin: 0 0 3px;
  color: var(--ai-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.5;
}

.ai-thanks-steps p {
  margin: 0;
  color: #536166;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.ai-calendar-section {
  scroll-margin-top: 112px;
  padding: 64px clamp(28px, 8vw, 120px) 72px;
  background: rgba(255, 255, 255, 0.88);
}

.ai-calendar-hero-panel {
  align-self: center;
  width: 100%;
  padding: 0;
  background: transparent;
}

.ai-calendar-heading {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.ai-calendar-hero-panel .ai-calendar-heading {
  margin-bottom: 10px;
}

.ai-calendar-heading h2 {
  margin: 0 0 6px;
  color: var(--ai-teal-dark);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 950;
  line-height: 1.35;
}

.ai-calendar-hero-panel .ai-calendar-heading h2 {
  font-size: clamp(20px, 2.2vw, 28px);
}

.ai-calendar-hero-panel .ai-calendar-heading span {
  font-size: 13px;
}

.ai-calendar-heading span {
  color: #435157;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.ai-calendar-embed {
  width: min(1040px, 100%);
  margin: 0 auto;
  background: transparent;
}

.ai-calendar-hero-panel .ai-calendar-embed {
  width: 100%;
}

.ai-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(9, 35, 39, 0.1);
  background: #fff;
}

.ai-calendar-toolbar div {
  display: grid;
  gap: 2px;
}

.ai-calendar-toolbar b {
  color: var(--ai-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.4;
}

.ai-calendar-toolbar span {
  color: #65747a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.ai-calendar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--ai-teal), var(--ai-teal-dark));
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ai-calendar-frame {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 430px;
}

.ai-calendar-hero-panel .ai-calendar-frame {
  grid-template-columns: 210px 1fr;
  min-height: 330px;
}

.ai-calendar-sidebar {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 111, 112, 0.94), rgba(0, 143, 139, 0.86)),
    url("assets/nekonote-ai-signup-illustration.png") center bottom / 82% auto no-repeat;
}

.ai-calendar-hero-panel .ai-calendar-sidebar {
  padding: 26px;
}

.ai-calendar-sidebar p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.ai-calendar-sidebar strong {
  font-size: 30px;
  font-weight: 950;
  line-height: 1.35;
}

.ai-calendar-hero-panel .ai-calendar-sidebar strong {
  font-size: 26px;
}

.ai-calendar-sidebar small {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.ai-calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 12px;
  align-content: start;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(0, 143, 139, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 143, 139, 0.06) 1px, transparent 1px),
    #fbfdfd;
  background-size: 44px 44px;
}

.ai-calendar-hero-panel .ai-calendar-grid {
  grid-template-columns: repeat(5, minmax(70px, 1fr));
  gap: 9px;
  padding: 22px;
}

.ai-calendar-grid > span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 8px;
  color: #5d6d72;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.ai-calendar-hero-panel .ai-calendar-grid > span {
  min-height: 30px;
}

.ai-calendar-grid button {
  min-height: 58px;
  border: 1px solid rgba(0, 143, 139, 0.16);
  border-radius: 8px;
  color: var(--ai-teal-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(18, 44, 52, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ai-calendar-hero-panel .ai-calendar-grid button {
  min-height: 44px;
  font-size: 13px;
}

.ai-calendar-grid button:hover {
  color: #fff;
  background: var(--ai-teal);
  box-shadow: 0 14px 24px rgba(0, 111, 112, 0.18);
  transform: translateY(-2px);
}

.ai-calendar-note {
  width: min(1040px, 100%);
  margin: 16px auto 0;
  color: #5a696f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

.ai-bottom-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(28px, 8vw, 120px);
  color: #fff;
  background: linear-gradient(135deg, #008f8b, #00676a);
}

.ai-bottom-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 950;
  line-height: 1.5;
}

.ai-bottom-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.ai-white-cta {
  min-height: 66px;
  padding: 0 42px;
  border-radius: 4px;
  color: var(--ai-teal-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 39, 43, 0.2);
  font-size: 17px;
}

.ai-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 54px;
  padding: 44px clamp(28px, 8vw, 120px) 42px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(0, 143, 139, 0.16) 0 1px, transparent 1px 100%),
    #11191d;
}

.ai-footer img {
  width: 130px;
  margin-bottom: 18px;
  filter: brightness(1.7) contrast(0.9);
}

.ai-footer p {
  max-width: 250px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.ai-footer small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.ai-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .ai-header {
    grid-template-columns: 124px 1fr auto;
    gap: 32px;
    width: min(1080px, calc(100% - 32px));
    padding: 12px 0;
  }

  .ai-brand img {
    width: 124px;
  }

  .ai-header.is-scrolled .ai-brand img {
    width: 112px;
  }

  .ai-nav {
    gap: 14px;
    font-size: 11px;
  }

  .ai-header-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .ai-hero {
    min-height: max(660px, 100svh);
  }

  .ai-reason-card,
  .ai-hero-stats,
  .ai-value-grid,
  .ai-flow-grid,
  .ai-faq-layout,
  .ai-thoughts,
  .ai-advisor-grid,
  .ai-entry-panel,
  .ai-bottom-cta,
  .ai-footer {
    grid-template-columns: 1fr;
  }

  .ai-hero-stats {
    width: min(830px, calc(100% - 48px));
    margin-top: -20px;
  }

  .ai-hero-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 28, 32, 0.12);
  }

  .ai-hero-stats article:last-child {
    border-bottom: 0;
  }

  .ai-reason-card article,
  .ai-proof-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 28, 32, 0.12);
  }

  .ai-reason-card .ai-reason-item {
    border-bottom: 0;
  }

  .ai-reason-card article:last-child,
  .ai-proof-stats article:last-child {
    border-bottom: 0;
  }

  .ai-value-grid article:first-child,
  .ai-value-grid article:last-child {
    border-radius: 0;
  }

  .ai-value-grid article:first-child {
    border-radius: 8px 8px 0 0;
  }

  .ai-value-grid article:last-child {
    border-radius: 0 0 8px 8px;
  }

  .ai-value-grid article:not(:last-child)::after,
  .ai-flow-grid article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    transform: translateX(50%) rotate(90deg);
  }

  .ai-proof {
    grid-template-columns: 1fr;
  }

  .ai-proof-copy {
    justify-self: center;
    width: min(830px, 100%);
  }

  .ai-proof-stats {
    grid-template-columns: 1fr;
    width: min(830px, 100%);
    margin: 0 auto;
  }

  .ai-job-card {
    flex-basis: 260px;
  }

  .ai-faq-layout img {
    justify-self: center;
    width: min(420px, 100%);
  }

  .ai-bottom-cta {
    text-align: center;
  }

  .ai-thoughts > img {
    justify-self: center;
    width: min(520px, 100%);
  }

  .ai-advisor-grid {
    width: min(760px, 100%);
  }

  .ai-white-cta {
    justify-self: center;
  }

  .ai-thanks-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ai-thanks-card,
  .ai-calendar-hero-panel {
    width: min(760px, 100%);
    justify-self: center;
  }

  .ai-thanks-next .ai-thanks-steps {
    grid-template-columns: 1fr;
  }

  .ai-calendar-frame {
    grid-template-columns: 1fr;
  }

  .ai-calendar-sidebar {
    min-height: 220px;
  }
}

@media (max-width: 980px) {
  .ai-header {
    grid-template-columns: 1fr auto;
    width: min(var(--max), calc(100% - 32px));
  }

  .ai-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  body.nekonote-ai-page {
    background-size: 100% auto;
  }

  .ai-floating-cta {
    position: fixed;
    right: 14px;
    bottom: 16px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--ai-teal), var(--ai-teal-dark));
    box-shadow: 0 10px 24px rgba(0, 70, 72, 0.34);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
  }

  .ai-floating-cta-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    color: rgba(255, 255, 255, 0.95);
  }

  .ai-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    top: 12px;
    width: min(100% - 24px, var(--max));
    padding: 10px 0;
  }

  .ai-header::before {
    inset: 0 -8px;
  }

  .ai-brand {
    min-width: 0;
    margin-left: 6px;
    transform: none;
  }

  .ai-brand img {
    width: 108px;
  }

  .ai-header.is-scrolled .ai-brand img {
    width: 98px;
  }

  .ai-nav {
    display: none;
  }

  .ai-header-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .ai-hero {
    align-items: start;
    min-height: max(700px, 100svh);
    padding: 96px 0 190px;
  }

  .ai-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68) 44%, rgba(255, 255, 255, 0.42) 68%, rgba(255, 255, 255, 0.52));
    pointer-events: none;
  }

  .nekonote-ai-page .ai-hero-image {
    --ai-hero-scale: 1;
    content: url("assets/nekonote-ai-hero-mobile-generated.webp");
    inset: 0;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    animation: none;
  }

  .ai-hero-content {
    z-index: 2;
    width: min(100%, calc(100% - 24px));
    padding: 0;
  }

  .ai-hero-label {
    min-height: 36px;
    margin-bottom: 22px;
    padding: 7px 16px;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }

  .ai-hero h1 {
    font-size: clamp(40px, 12.4vw, 54px);
    line-height: 1.18;
  }

  .ai-hero-strips {
    justify-items: center;
    width: 100%;
    gap: 10px;
    margin: 24px 0 28px;
  }

  .ai-hero-strips p {
    width: min(100%, 352px);
    min-height: 0;
    padding: 9px 34px 10px 28px;
    font-size: clamp(11.2px, 3.2vw, 12.8px);
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .ai-hero-strips p:first-child,
  .ai-hero-strips p:last-child {
    width: min(100%, 352px);
    margin-left: 0;
  }

  .ai-main-cta {
    min-width: 0;
    width: min(100%, 352px);
    min-height: 64px;
    gap: 10px;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .ai-cta-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .ai-hero-note {
    flex-wrap: wrap;
    gap: 8px;
    width: min(100%, 352px);
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }

  .ai-hero-note::before,
  .ai-hero-note::after {
    flex: 1 1 44px;
    max-width: 72px;
  }

  .ai-section {
    scroll-margin-top: 78px;
    padding-top: 46px;
    padding-bottom: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ai-hero-stats {
    width: min(100% - 24px, 430px);
    margin-top: -18px;
    margin-bottom: 8px;
  }

  .ai-hero-stats article {
    grid-template-columns: 48px 1fr;
    min-height: 0;
    gap: 14px;
    padding: 18px 18px;
  }

  .ai-hero-stats .ai-line-icon {
    width: 44px;
    height: 44px;
  }

  .ai-hero-stats strong {
    font-size: 28px;
  }

  .ai-hero-stats strong span {
    font-size: 15px;
  }

  .ai-hero-stats article:nth-child(2) strong {
    font-size: 22px;
    line-height: 1.25;
    white-space: normal;
  }

  .ai-title {
    grid-template-columns: minmax(20px, 32px) minmax(0, auto) minmax(20px, 32px);
    gap: 12px;
    margin-bottom: 28px;
  }

  .ai-title h2 {
    font-size: clamp(22px, 6.1vw, 26px);
    line-height: 1.45;
  }

  .ai-reason-card article,
  .ai-value-grid article,
  .ai-flow-grid article {
    padding: 28px 22px;
  }

  .ai-reason-card {
    gap: 34px;
  }

  .ai-reason-card .ai-reason-item,
  .ai-reason-card .ai-reason-item.is-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }

  .ai-reason-item.is-reverse .ai-card-image,
  .ai-reason-item.is-reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .ai-reason-card .ai-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    margin: 0 auto;
  }

  .ai-reason-item div {
    min-height: 0;
    padding: 0;
  }

  .ai-reason-item div > span {
    top: 2px;
    right: 4px;
    font-size: 116px;
  }

  .ai-reason-badge {
    min-height: 36px;
    margin-bottom: 12px !important;
    padding: 0 14px;
    font-size: 16px !important;
  }

  .ai-reason-card h3 {
    margin-bottom: 12px;
    font-size: clamp(23px, 7vw, 28px);
    line-height: 1.4;
  }

  .ai-reason-card div > p:last-child {
    color: #536166;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.85;
  }

  .ai-value::before,
  .ai-value::after,
  .ai-faq::before {
    display: none;
  }

  .ai-proof {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ai-flow {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .ai-flow-grid {
    gap: 10px;
  }

  .ai-flow-grid article {
    display: grid;
    grid-template-columns: 34px 52px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    min-height: 0;
    padding: 12px 14px;
    text-align: left;
  }

  .ai-flow-grid article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 29px;
    bottom: -17px;
    width: 20px;
    font-size: 22px;
    transform: rotate(90deg);
  }

  .ai-flow-grid b {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 14px;
  }

  .ai-flow-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .ai-flow-grid h3 {
    grid-column: 3;
    grid-row: 1;
    margin: 0 0 2px;
    font-size: 15px;
    line-height: 1.35;
  }

  .ai-flow-grid p {
    grid-column: 3;
    grid-row: 2;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .ai-faq-list {
    grid-template-columns: 1fr;
  }

  .ai-job-marquee {
    overflow: hidden;
    padding: 0 4px 12px;
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }

  .ai-job-track {
    width: max-content;
    animation: aiJobMarquee 44s linear infinite;
  }

  .ai-job-card {
    flex-basis: min(82vw, 300px);
    min-height: 388px;
  }

  .ai-job-card img {
    height: 134px;
  }

  .ai-job-card div {
    padding: 18px;
  }

  .ai-entry-form-embed {
    min-height: 500px;
    padding: 10px;
  }

  .ai-entry-form-iframe {
    min-height: 700px;
  }

  .ai-thanks-main {
    padding-top: 0;
  }

  .ai-thanks-hero {
    gap: 14px;
    padding: 80px 16px 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(223, 244, 243, 0.7)),
      url("assets/nekonote-ai-section-bg.png") center / cover no-repeat;
  }

  .ai-thanks-label,
  .ai-thanks-card-label,
  .ai-calendar-heading p {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .ai-thanks-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .ai-thanks-mark svg {
    width: 32px;
    height: 32px;
  }

  .ai-thanks-copy h1 {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.3;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
  }

  .ai-thanks-copy > p:last-child {
    font-size: 12px;
    line-height: 1.7;
  }

  .ai-thanks-card {
    padding: 20px;
  }

  .ai-thanks-next {
    width: calc(100% - 32px);
    margin: 34px auto;
  }

  .ai-thanks-card h2 {
    font-size: 21px;
  }

  .ai-thanks-steps article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .ai-thanks-steps span {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .ai-calendar-section {
    scroll-margin-top: 92px;
    padding: 44px 16px 50px;
  }

  .ai-calendar-hero-panel {
    padding: 0;
  }

  .ai-calendar-heading {
    margin-bottom: 22px;
  }

  .ai-calendar-hero-panel .ai-calendar-heading {
    justify-items: start;
    margin-bottom: 10px;
    text-align: left;
  }

  .ai-calendar-heading h2 {
    font-size: clamp(23px, 6.5vw, 28px);
  }

  .ai-calendar-hero-panel .ai-calendar-heading h2 {
    margin-bottom: 4px;
    font-size: clamp(20px, 5.5vw, 23px);
  }

  .ai-calendar-hero-panel .ai-calendar-heading span {
    font-size: 12px;
    line-height: 1.55;
  }

  .ai-calendar-toolbar {
    display: grid;
    padding: 16px;
  }

  .ai-calendar-badge {
    width: 100%;
  }

  .ai-calendar-sidebar {
    min-height: 180px;
    padding: 24px;
    background:
      linear-gradient(135deg, rgba(0, 111, 112, 0.96), rgba(0, 143, 139, 0.88)),
      url("assets/nekonote-ai-signup-illustration.png") right 18px bottom / 160px auto no-repeat;
  }

  .ai-calendar-hero-panel .ai-calendar-sidebar {
    display: none;
  }

  .ai-calendar-sidebar strong {
    font-size: 26px;
  }

  .ai-calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
  }

  .ai-calendar-hero-panel .ai-calendar-frame {
    min-height: 0;
  }

  .ai-calendar-hero-panel .ai-calendar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .ai-calendar-grid > span {
    display: none;
  }

  .ai-calendar-grid button {
    min-height: 50px;
    font-size: 13px;
  }

  .ai-calendar-hero-panel .ai-calendar-grid button {
    min-height: 38px;
    font-size: 12px;
  }

  .ai-faq-layout {
    gap: 18px;
  }

  .ai-faq summary {
    grid-template-columns: 18px 1fr 18px;
    padding: 12px;
    font-size: 12px;
  }

  .ai-faq details p {
    padding: 0 12px 14px 42px;
    font-size: 12px;
  }

  .ai-thoughts {
    gap: 22px;
    padding: 42px 16px;
  }

  .ai-thoughts-copy h2 {
    font-size: 30px;
  }

  .ai-thoughts-copy p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.9;
  }

  .ai-thoughts-copy p br {
    display: none;
  }

  .ai-thoughts > img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .ai-advisors {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .ai-advisor-grid {
    gap: 16px;
  }

  .ai-advisor-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }

  .ai-advisor-visual {
    justify-content: start;
  }

  .ai-advisor-icon {
    width: 72px;
    height: 72px;
    padding: 10px;
  }

  .ai-advisor-body > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .ai-advisor-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .ai-entry-panel {
    padding: 38px 16px 42px;
  }

  .ai-entry-panel h2 {
    font-size: clamp(22px, 6vw, 26px);
    line-height: 1.45;
  }

  .ai-bottom-cta {
    padding: 30px 16px;
  }

  .ai-white-cta {
    width: min(100%, 340px);
    min-height: 58px;
    padding: 0 20px;
    font-size: 15px;
  }

  .ai-footer {
    gap: 28px;
    padding: 38px 16px;
  }

  .ai-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 10px;
    width: 100%;
  }

  .ai-footer nav a {
    min-width: 0;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .ai-header {
    width: calc(100% - 20px);
  }

  .ai-brand img {
    width: 96px;
  }

  .ai-header.is-scrolled .ai-brand img {
    width: 90px;
  }

  .ai-header-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .ai-header-cta span {
    display: none;
  }

  .ai-hero {
    padding-top: 88px;
  }

  .ai-hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .ai-hero-label,
  .ai-hero-strips p,
  .ai-main-cta,
  .ai-hero-note {
    width: min(100%, 334px);
  }

  .ai-hero-stats {
    width: calc(100% - 20px);
  }

  .ai-hero-stats article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 16px 14px;
  }

  .ai-hero-stats .ai-line-icon {
    width: 38px;
    height: 38px;
  }

  .ai-hero-stats strong {
    font-size: 25px;
  }

  .ai-title {
    grid-template-columns: 20px minmax(0, auto) 20px;
    gap: 10px;
  }

  .ai-job-card {
    flex-basis: 84vw;
  }

  .ai-footer {
    padding-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nekonote-ai-page *,
  .nekonote-ai-page *::before,
  .nekonote-ai-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ai-reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .ai-job-track {
    animation: none !important;
  }
}

/* Business page production-alignment overrides */
.business-contact-panel {
  height: 536px;
  overflow: hidden;
  padding: 58px 42px 0;
}

.business-contact-panel > p {
  margin-bottom: 22px;
}

.business-embed-form {
  height: calc(100% - 48px);
  overflow: hidden;
}

.business-embed-form iframe {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 520px;
  border: 0;
  background: #fff;
}

.business-solution {
  padding-top: 110px;
  padding-bottom: 76px;
}

.business-solution-head {
  margin-bottom: 28px;
}

.business-solution-head h2 {
  gap: 16px;
  font-size: clamp(40px, 4.8vw, 58px);
  line-height: 1.12;
}

.business-solution-head h2 img {
  width: clamp(140px, 17vw, 210px);
  height: auto;
  margin-bottom: -10px;
}

.business-down-arrows {
  display: grid;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 72px;
}

.business-down-arrows span {
  display: block;
  width: 42px;
  height: 24px;
  clip-path: polygon(0 0, 50% 100%, 100% 0, 78% 0, 50% 56%, 22% 0);
  background: var(--biz-green);
}

.business-solution .business-section-title {
  margin-bottom: 74px;
}

.business-strength-list {
  display: grid;
  gap: 84px;
  width: min(1070px, calc(100% - 64px));
  margin: 0 auto;
}

.business-strength {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  min-height: 382px;
}

.business-strength:nth-child(2) {
  grid-template-columns: minmax(340px, 1.08fr) minmax(0, 0.92fr);
}

.business-strength::before {
  content: "";
  position: absolute;
  inset: 38px 0 0;
  z-index: 0;
  background: #eef1f4;
}

.business-strength-copy,
.business-strength-media {
  position: relative;
  z-index: 1;
}

.business-strength-copy {
  padding: 62px 58px;
}

.business-strength-copy > p:first-child {
  margin: 0 0 26px;
  color: var(--biz-navy);
  font-family: "Familjen Grotesk", "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.business-strength-copy h3 {
  margin: 0 0 24px;
  color: var(--biz-navy);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.45;
}

.business-strength-copy > p:last-child {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}

.business-strength-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.45;
  box-shadow: 0 18px 36px rgba(0, 42, 83, 0.14);
}

.business-strength-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.business-strength:hover .business-strength-media img {
  transform: scale(1.045);
}

.business-message {
  padding: 64px 24px 98px;
  color: #333;
  background: #fff;
}

.business-message::before {
  display: none;
}

.business-message h2 {
  margin: 0;
  color: var(--biz-navy);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.35;
}

.business-message img {
  display: block;
  width: min(510px, 74vw);
  margin: 12px auto 34px;
}

.business-message > p {
  color: #333;
  font-size: 20px;
  line-height: 2.05;
}

.business-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 0;
  width: 100%;
  min-height: 360px;
  margin: 0;
  padding: 76px 24px;
  overflow: hidden;
  color: #fff;
  background: #1f2933 url("assets/business-footer-bg.png") center / cover no-repeat;
  box-shadow: none;
  text-align: center;
}

.business-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.business-final-cta > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.business-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.1vw, 38px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.business-final-cta .business-main-cta {
  margin: 24px auto 18px;
}

.business-final-cta p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

.business-talents {
  padding: 104px 0 112px;
  background: #f5f5f5;
}

.business-talents .business-section-title {
  margin-bottom: 58px;
}

.business-talent-track {
  --business-loop-gap: 30px;
  --business-loop-shift: 15px;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
}

.business-talent-track::-webkit-scrollbar {
  display: none;
}

.business-talent-marquee {
  display: flex;
  width: max-content;
  gap: var(--business-loop-gap);
  padding: 0 30px 32px;
  animation: businessRecruitScroll 34s linear infinite;
  will-change: transform;
}

.business-talent-track:hover .business-talent-marquee {
  animation-play-state: paused;
}

.business-talent-marquee article {
  width: 310px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 42, 83, 0.14);
}

.business-talent-marquee h3 {
  display: grid;
  align-items: center;
  min-height: 72px;
  margin: 0;
  padding: 16px 22px;
  color: #fff;
  background: var(--biz-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.business-talent-marquee img {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
  object-position: center;
  background: #dce8f2;
}

.business-talent-marquee dl {
  margin: 0;
  padding: 24px 22px 28px;
}

.business-talent-marquee dt {
  display: inline-block;
  min-width: 64px;
  margin: 18px 0 7px;
  padding: 3px 10px;
  color: #fff;
  background: #a4a4a4;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.business-talent-marquee dt:first-child {
  margin-top: 0;
}

.business-talent-marquee dd {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.business-flow {
  padding: 104px 0 116px;
  background: #fff;
}

.business-flow .business-section-title {
  margin-bottom: 24px;
}

.business-flow > .business-flow-label {
  position: relative;
  display: block;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0 auto 64px;
  box-sizing: border-box;
  padding: 20px 58px;
  color: #fff;
  background: var(--biz-navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.business-flow > .business-flow-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--biz-navy);
  transform: translateX(-50%);
}

.business-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  width: min(1090px, calc(100% - 64px));
  margin: 0 auto 58px;
}

.business-flow-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #c5c5c5;
}

.business-flow-grid article {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.business-flow-grid article + article::before {
  display: none;
}

.business-flow-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: #333;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.business-flow-grid img {
  width: 100%;
  max-width: 192px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 18px;
}

.business-flow-grid h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
  white-space: nowrap;
}

.business-flow > .business-flow-message {
  position: relative;
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  box-sizing: border-box;
  padding: 42px 56px;
  color: #333;
  background: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.9;
  text-align: center;
}

.business-bottom-form {
  padding: 100px 24px 112px;
  background: #f5f5f5;
}

.business-bottom-form .business-section-title {
  margin-bottom: 44px;
}

.business-bottom-form-frame {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(7, 42, 85, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 42, 83, 0.12);
}

.business-bottom-form-frame iframe {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 720px;
  border: 0;
  background: #fff;
}

.business-flow > .business-flow-message::before,
.business-flow > .business-flow-message::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: var(--biz-green);
  border-style: solid;
}

.business-flow > .business-flow-message::before {
  top: 0;
  left: 0;
  border-width: 5px 0 0 5px;
}

.business-flow > .business-flow-message::after {
  right: 0;
  bottom: 0;
  border-width: 0 5px 5px 0;
}

@keyframes businessRecruitScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - var(--business-loop-shift)), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-talent-marquee {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .business-contact-panel {
    height: auto;
    overflow: hidden;
    padding-bottom: 0;
  }

  .business-embed-form {
    height: auto;
  }

  .business-strength,
  .business-strength:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .business-strength::before {
    inset: 28px 0 0;
  }

  .business-strength-copy {
    padding: 48px 42px;
  }

  .business-strength:nth-child(2) .business-strength-media {
    order: 2;
  }
}

@media (max-width: 840px) {
  .business-solution-head h2 {
    font-size: 32px;
  }

  .business-solution-head h2 img {
    width: 138px;
  }

  .business-strength-list {
    width: min(100%, calc(100% - 32px));
    gap: 48px;
  }

  .business-strength-copy {
    padding: 36px 24px;
  }

  .business-strength-copy > p:first-child {
    font-size: 25px;
  }

  .business-strength-copy h3 {
    font-size: 25px;
  }

  .business-message > p {
    font-size: 16px;
  }

  .business-talent-marquee {
    --business-loop-gap: 18px;
    --business-loop-shift: 9px;
    gap: var(--business-loop-gap);
    padding-left: 16px;
    padding-right: 16px;
  }

  .business-talent-marquee article {
    width: 286px;
  }

  .business-flow > .business-flow-label {
    padding: 16px 22px;
    font-size: 16px;
  }

  .business-flow-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, calc(100% - 32px));
  }

  .business-flow-grid::before {
    top: 22px;
    bottom: 22px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }

  .business-flow > .business-flow-message {
    width: min(100%, calc(100% - 32px));
    padding: 34px 22px;
    font-size: 17px;
  }
}

/* Legal / Privacy policy */
.legal-section {
  padding-top: 120px;
}

.legal-doc {
  padding: 48px 56px;
  text-align: left;
}

.legal-block {
  margin-bottom: 36px;
}

.legal-block:last-of-type {
  margin-bottom: 0;
}

.legal-doc h2 {
  font-size: 20px;
  color: var(--purple);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.legal-doc p {
  margin: 0 0 12px;
  color: var(--ink);
}

.legal-doc ol {
  margin: 0;
  padding-left: 1.4em;
}

.legal-doc ol li {
  margin-bottom: 8px;
}

.legal-contact {
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.legal-contact > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}

.legal-contact dt {
  font-weight: 700;
  color: var(--muted);
  margin: 0;
}

.legal-contact dd {
  margin: 0;
}

.legal-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 640px) {
  .legal-doc {
    padding: 32px 22px;
  }

  .legal-contact > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
