/* ============================================================
   JICU ClaudeCode LP — stylesheet v3
   JICU公式サイト Style DNA 完全準拠版
   #000000 black / #AEFF00 lime / #FF6B08 orange
   border-radius: 0 / flat / no shadow
   ============================================================ */

/* ===== 1. Design Tokens ===== */
:root {
  /* JICU Brand Core — jicu.jp実測値 */
  --color-black:        #000000;
  --color-lime:         #AEFF00;
  --color-lime-dark:    #8fc200;
  --color-lime-dim:     rgba(174,255,0,0.15);
  --color-lime-border:  rgba(174,255,0,0.3);
  --color-cta:          #FF6B08;
  --color-cta-hover:    #e55c00;
  --color-cta-glow:     rgba(255,107,8,0.2);

  /* Text */
  --color-text:         #1a1a1a;
  --color-text-mute:    #666666;
  --color-text-light:   #999999;
  --color-text-on-dark: #ffffff;
  --color-text-on-dark-mute: rgba(255,255,255,0.68);

  /* Backgrounds */
  --color-bg:           #ffffff;
  --color-bg-off:       #f6f6f6;
  --color-bg-dark:      #000000;
  --color-bg-dark2:     #0d0d0d;
  --color-bg-dark-card: #111111;
  --color-border:       #e8e8e8;
  --color-border-dark:  rgba(255,255,255,0.1);

  /* Fonts — jicu.jp準拠 */
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Lato', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.375rem;  /* 22px */
  --text-2xl:  2rem;      /* 32px */
  --text-3xl:  2.75rem;   /* 44px */
  --text-hero: 3.5rem;    /* 56px */

  /* Spacing */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-6:  3rem;
  --space-8:  4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Layout */
  --container-max:    1120px;
  --container-narrow: 840px;

  /* Border radius — JICU: ゼロ */
  --radius: 0px;

  /* JICU公式サイトにshadow無し */
  --shadow-none: none;
}

/* ===== 2. Reset & Base ===== */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-jp);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 3px;
}

/* ===== 3. Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== 4. Layout (l-) ===== */
.l-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (min-width: 768px) {
  .l-container { padding: 0 var(--space-4); }
}
.l-container--narrow { max-width: var(--container-narrow); }

.l-section       { padding: var(--space-12) 0; }
.l-section--off  { background: var(--color-bg-off); }
.l-section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

/* --- l-header --- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: border-color .2s;
}
.l-header--scrolled {
  border-bottom-color: #d0d0d0;
}
.l-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  height: 64px;
}
.l-header__cta {
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .l-header__cta { display: none; }
}

/* --- l-footer --- */
.l-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark-mute);
  border-top: 3px solid var(--color-cta);
}
.l-footer__top {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-3);
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .l-footer__top { padding: var(--space-8) var(--space-4); }
}
.l-footer__brand { flex: 1; min-width: 180px; }
.l-footer__logo  { height: 36px; width: auto; }
.l-footer__logo-text {
  font-size: var(--text-xl);
  font-weight: 900;
  color: #fff;
}
.l-footer__tagline {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-mute);
}
.l-footer__nav { flex: 1; min-width: 200px; }
.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-4);
}
.l-footer__nav-link {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-mute);
  transition: color .2s;
}
.l-footer__nav-link:hover { color: var(--color-lime); }

.l-footer__company {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-4) 0;
}
.l-footer__company-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
}
.l-footer__company-item {
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.l-footer__company-item dt { color: var(--color-text-on-dark-mute); }
.l-footer__company-link,
.l-footer__mail {
  color: rgba(255,255,255,0.85);
  transition: color .2s;
}
.l-footer__company-link:hover,
.l-footer__mail:hover { color: var(--color-lime); }

.l-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-3) 0;
}
.l-footer__bottom .l-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  justify-content: space-between;
  align-items: center;
}
.l-footer__copy   { font-size: var(--text-xs); color: var(--color-text-on-dark-mute); }
.l-footer__legal  { display: flex; gap: var(--space-3); }
.l-footer__legal a {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-mute);
  transition: color .2s;
}
.l-footer__legal a:hover { color: var(--color-lime); }

/* ===== 5. Components (c-) ===== */

/* --- c-brand --- */
.c-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.c-brand__logo  { height: 34px; width: auto; }
.c-brand__text  {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-text);
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

/* --- c-nav --- */
.c-nav { flex: 1; }
.c-nav__list {
  display: flex;
  gap: 0;
  align-items: center;
}
.c-nav__link {
  display: block;
  padding: 0.4rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-mute);
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: 0;
}
.c-nav__link:hover { color: var(--color-text); }

@media (max-width: 860px) {
  .c-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-2);
    z-index: 99;
  }
  .c-nav--open { display: block; }
  .c-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .c-nav__link { padding: 0.9rem 1rem; font-size: var(--text-base); border-bottom: 1px solid var(--color-border); }
}

/* --- c-nav-toggle --- */
.c-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
  transition: opacity .2s;
}
.c-nav-toggle:hover { opacity: 0.7; }
.c-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform .2s, opacity .2s;
}
.c-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.c-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.c-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 860px) {
  .c-nav-toggle { display: flex; }
}

/* --- c-button --- */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.c-button:active { transform: scale(0.97); }

/* Size: sm */
.c-button--sm {
  height: 38px;
  padding: 0 1.25rem;
  font-size: var(--text-sm);
}
/* Size: md */
.c-button--md,
.c-button:not([class*="--sm"]):not([class*="--lg"]) {
  height: 46px;
  padding: 0 1.5rem;
  font-size: var(--text-base);
}
/* Size: lg */
.c-button--lg {
  height: 54px;
  padding: 0 2rem;
  font-size: var(--text-lg);
}

/* Variant: CTA (orange) — jicu.jp #FF6B08 */
.c-button--cta {
  background: var(--color-cta);
  color: #fff;
  border-color: var(--color-cta);
}
.c-button--cta:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* Variant: ghost (on dark bg) */
.c-button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.c-button--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
}

/* Variant: outline (on light bg) */
.c-button--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.c-button--outline:hover {
  background: var(--color-text);
  color: #fff;
}

/* --- c-section-head --- */
.c-section-head {
  margin-bottom: var(--space-8);
}
.c-section-head--center {
  text-align: center;
}
/* Eyebrow: jicu.jp風 — 小文字ラベル、左ライン装飾 */
.c-section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lime-dark);
  margin-bottom: var(--space-2);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-lime-dark);
}
.c-section-head--light .c-section-head__eyebrow {
  color: var(--color-lime);
  border-color: var(--color-lime);
}
.c-section-head__title {
  font-size: clamp(1.75rem, 4vw, var(--text-3xl));
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  font-feature-settings: "palt";
  color: var(--color-text);
}
.c-section-head--light .c-section-head__title {
  color: var(--color-text-on-dark);
}
.c-section-head__lead {
  margin-top: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-mute);
  line-height: 1.9;
  max-width: 640px;
}
.c-section-head--center .c-section-head__lead {
  margin-left: auto;
  margin-right: auto;
}
.c-section-head--light .c-section-head__lead {
  color: var(--color-text-on-dark-mute);
}

/* ===== 6. Hero (p-hero) ===== */
.p-hero {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 6rem 0 6rem;
  position: relative;
  overflow: hidden;
}
/* JICU風 グリッドオーバーレイ */
.p-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(174,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,255,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.p-hero__inner {
  position: relative;
  z-index: 1;
}
.p-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-lime);
  border-bottom: 1px solid rgba(174,255,0,0.5);
  padding-bottom: 0.4rem;
  margin-bottom: var(--space-4);
}
.p-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  font-feature-settings: "palt";
  margin-bottom: var(--space-4);
  color: #fff;
}
.p-hero__title-accent {
  color: var(--color-lime);
}
.p-hero__lead {
  font-size: var(--text-base);
  color: var(--color-text-on-dark-mute);
  line-height: 1.9;
  margin-bottom: var(--space-6);
  max-width: 580px;
}
.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .p-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .p-hero__actions .c-button { width: 100%; justify-content: center; }
}

/* Stats — AXCXEPT風の数値強調 */
.p-hero__stats {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 520px;
}
.p-hero__stat {
  flex: 1;
  min-width: 120px;
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.p-hero__stat:last-child { border-right: none; }
.p-hero__stat-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-lime);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.p-hero__stat-unit {
  font-family: var(--font-jp);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-lime);
}
.p-hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
/* モバイル: stat dividerを非表示 */
.p-hero__stat-divider { display: none; }
@media (max-width: 540px) {
  .p-hero__stats { max-width: 100%; }
  .p-hero__stat { min-width: 100px; padding: var(--space-2) var(--space-3); }
  .p-hero__stat-num { font-size: 1.75rem; }
}

/* ===== 7. Issues (p-issues) ===== */
.p-issues__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: var(--space-8);
  border: 1px solid var(--color-border);
}
.p-issues__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-4);
  background: var(--color-bg);
  border-left: 4px solid var(--color-lime-dark);
  border-bottom: 1px solid var(--color-border);
  transition: background .2s, border-left-color .2s;
}
.p-issues__item:last-child { border-bottom: none; }
.p-issues__item:hover {
  background: var(--color-bg-off);
  border-left-color: var(--color-lime);
}
.p-issues__num {
  font-family: var(--font-en);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-lime-dark);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  padding-top: 0.2rem;
  letter-spacing: -0.02em;
}
.p-issues__body { flex: 1; }
.p-issues__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-issues__text {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.7;
}
/* 課題セクション締め — jicu.jp風 黒帯 */
.p-issues__message {
  background: var(--color-bg-dark);
  color: #fff;
  padding: var(--space-6) var(--space-8);
  text-align: center;
  font-size: var(--text-lg);
  line-height: 1.85;
  border-left: 4px solid var(--color-lime);
}
.p-issues__message strong {
  color: var(--color-lime);
  font-weight: 900;
}
@media (max-width: 600px) {
  .p-issues__item { padding: var(--space-3); }
  .p-issues__num  { font-size: var(--text-base); }
  .p-issues__message { padding: var(--space-4) var(--space-3); font-size: var(--text-base); }
}

/* ===== 8. What is Claude Code (p-what-is) ===== */
.p-what-is__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.p-what-is__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-6) var(--space-4);
  transition: background .2s;
}
.p-what-is__item:hover {
  background: rgba(255,255,255,0.06);
}
.p-what-is__num {
  font-family: var(--font-en);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--color-lime);
  line-height: 1;
  margin-bottom: var(--space-2);
  opacity: 0.5;
  letter-spacing: -0.03em;
}
.p-what-is__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
  line-height: 1.4;
  letter-spacing: 0;
}
.p-what-is__text {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-mute);
  line-height: 1.85;
}
@media (max-width: 640px) {
  .p-what-is__grid { grid-template-columns: 1fr; }
}

/* ===== 9. Solution (p-solution) ===== */
.p-solution__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.p-solution__item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background .15s;
}
.p-solution__num {
  font-family: var(--font-en);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--color-lime-dark);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5rem;
  padding-top: 0.15rem;
  opacity: 0.55;
  letter-spacing: -0.03em;
}
.p-solution__body { flex: 1; }
.p-solution__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.4;
  letter-spacing: 0;
}
.p-solution__text {
  font-size: var(--text-base);
  color: var(--color-text-mute);
  line-height: 1.85;
}
@media (max-width: 600px) {
  .p-solution__item { flex-direction: column; gap: var(--space-2); padding: var(--space-4) 0; }
  .p-solution__num  { font-size: 2.25rem; }
}

/* ===== 10. Before / After (p-before-after) ===== */
.p-before-after__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-6);
}
.p-before-after__col {
  padding: var(--space-5) var(--space-4);
}
.p-before-after__col--before {
  background: #fff;
  border: 1px solid var(--color-border);
}
.p-before-after__col--after {
  background: var(--color-bg-dark);
  color: #fff;
  border-left: 4px solid var(--color-lime);
  border-top: 1px solid rgba(174,255,0,0.15);
  border-right: 1px solid rgba(174,255,0,0.08);
  border-bottom: 1px solid rgba(174,255,0,0.08);
}
.p-before-after__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid;
}
.p-before-after__col--before .p-before-after__label {
  color: var(--color-text-light);
  border-color: var(--color-border);
}
.p-before-after__col--after .p-before-after__label {
  color: var(--color-lime);
  border-color: rgba(174,255,0,0.3);
}
.p-before-after__list { display: flex; flex-direction: column; gap: 0.6rem; }
.p-before-after__col--before .p-before-after__list li {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.p-before-after__col--before .p-before-after__list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}
.p-before-after__col--after .p-before-after__list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.p-before-after__col--after .p-before-after__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-weight: 700;
}
.p-before-after__arrow {
  color: var(--color-lime-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-before-after__tagline {
  text-align: center;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-lime-dark);
}
@media (max-width: 767px) {
  .p-before-after__grid {
    grid-template-columns: 1fr;
  }
  .p-before-after__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

/* ===== 11. Steps (p-steps) ===== */
.p-steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  position: relative;
}
.p-steps__item {
  text-align: center;
  padding: var(--space-6) var(--space-3);
  border-right: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
  background: #fff;
  transition: background .2s;
}
.p-steps__item:last-child { border-right: none; }
.p-steps__item:hover { background: var(--color-bg-off); }
/* connector arrow */
.p-steps__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.1rem;
  right: -9px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--color-lime-dark);
  border-right: 2px solid var(--color-lime-dark);
  transform: rotate(45deg);
  background: #fff;
  z-index: 2;
}
.p-steps__num-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-bg-dark);
  border: 2px solid var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
}
.p-steps__num {
  font-family: var(--font-en);
  font-size: var(--text-base);
  font-weight: 900;
  color: var(--color-lime);
  line-height: 1;
  letter-spacing: 0;
}
.p-steps__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  line-height: 1.4;
  letter-spacing: 0;
}
.p-steps__text {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-steps__list {
    grid-template-columns: 1fr;
    border: none;
  }
  .p-steps__item {
    text-align: left;
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    border-right: none;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-lime-dark);
    margin-bottom: 1px;
    padding: var(--space-3);
  }
  .p-steps__item:not(:last-child)::after { display: none; }
  .p-steps__num-wrap { flex-shrink: 0; margin: 0; width: 44px; height: 44px; }
  .p-steps__num { font-size: var(--text-sm); }
}

/* ===== 12. AI Agents (p-agents) ===== */
.p-agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.p-agents__item {
  background: var(--color-bg-dark-card);
  border-top: 2px solid transparent;
  padding: var(--space-4);
  transition: background .2s, border-top-color .2s;
}
.p-agents__item:hover {
  background: #161616;
  border-top-color: var(--color-lime);
}
.p-agents__name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-lime);
  margin-bottom: var(--space-2);
  line-height: 1.4;
  letter-spacing: 0;
}
.p-agents__desc {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-mute);
  line-height: 1.85;
}
@media (max-width: 900px) {
  .p-agents__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .p-agents__grid { grid-template-columns: 1fr; }
}

/* ===== 13. Pricing (p-pricing) ===== */
.p-pricing__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border);
}
.p-pricing__item {
  background: var(--color-bg);
  border-right: 1px solid var(--color-border);
  padding: var(--space-6) var(--space-5);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-top: 3px solid transparent;
  transition: border-top-color .2s, background .2s;
}
.p-pricing__item:last-child { border-right: none; }
.p-pricing__item:hover {
  background: var(--color-bg-off);
  border-top-color: var(--color-lime-dark);
}
.p-pricing__item--featured {
  border-top: 3px solid var(--color-lime-dark);
  background: #fff;
  position: relative;
}
.p-pricing__badge {
  position: absolute;
  top: 0;
  right: var(--space-4);
  background: var(--color-lime-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.p-pricing__plan-name {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
  letter-spacing: 0;
}
.p-pricing__desc {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.p-pricing__price {
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  line-height: 1.4;
}
.p-pricing__amount {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.p-pricing__currency {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.p-pricing__tax {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-top: 0.2rem;
}
.p-pricing__monthly {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-cta);
}
.p-pricing__includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.p-pricing__includes li {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.p-pricing__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-lime-dark);
  font-weight: 700;
}
.p-pricing__note {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  text-align: center;
}
.p-pricing__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.p-pricing__notes {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .p-pricing__list {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
    background: var(--color-border);
  }
  .p-pricing__item {
    border-right: none;
    border: 1px solid var(--color-border);
  }
  .p-pricing__item--featured { border-top: 3px solid var(--color-lime-dark); }
  .p-pricing__badge { top: 0; }
}

/* ===== 14. Team (p-team) ===== */
.p-team__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
/* 4th + 5th: center on 3-col grid */
.p-team__list li:nth-child(4) {
  grid-column: 1;
}
.p-team__list li:nth-child(5) {
  grid-column: 2;
}
.p-team__item {
  background: var(--color-bg);
  overflow: hidden;
  transition: background .2s;
}
.p-team__item:hover { background: var(--color-bg-off); }
.p-team__photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8e8e8;
  border-bottom: 3px solid transparent;
  transition: border-color .2s;
}
.p-team__item:hover .p-team__photo-wrap {
  border-bottom-color: var(--color-lime-dark);
}
.p-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s;
}
.p-team__item:hover .p-team__photo { transform: scale(1.04); }
.p-team__body { padding: var(--space-3); }
.p-team__role {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: 0.3rem;
}
.p-team__name {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  letter-spacing: 0;
}
.p-team__bio {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .p-team__list { grid-template-columns: repeat(2, 1fr); }
  .p-team__list li:nth-child(4),
  .p-team__list li:nth-child(5) { grid-column: auto; }
}
@media (max-width: 540px) {
  .p-team__list { grid-template-columns: 1fr; }
}

/* ===== 15. Final CTA (p-final-cta) ===== */
.p-final-cta {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.p-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(174,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,255,0,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.p-final-cta__inner {
  position: relative;
  z-index: 1;
}
.p-final-cta__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-lime);
  border-bottom: 1px solid rgba(174,255,0,0.5);
  padding-bottom: 0.4rem;
  margin-bottom: var(--space-4);
}
.p-final-cta__title {
  font-size: clamp(1.75rem, 4vw, var(--text-3xl));
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  font-feature-settings: "palt";
  margin-bottom: var(--space-6);
  color: #fff;
}
.p-final-cta__accent { color: var(--color-lime); }
.p-final-cta__sub {
  font-size: var(--text-base);
  color: var(--color-text-on-dark-mute);
  line-height: 1.95;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}
.p-final-cta__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== 16. Utility ===== */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ===== 16b. Inline CTA strip (p-inline-cta) ===== */
.p-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-off);
  border-left: 4px solid var(--color-cta);
  margin-top: var(--space-8);
}
.p-inline-cta__text {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}
/* dark sectionの内部に置く場合 */
.p-inline-cta--dark-inner {
  background: transparent;
  border-left-color: var(--color-lime);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-left: none;
}
.p-inline-cta__text--light {
  color: rgba(255,255,255,0.85);
}
@media (max-width: 640px) {
  .p-inline-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4);
  }
  .p-inline-cta .c-button { width: 100%; justify-content: center; }
}

/* ===== 17. Utilities & aliases ===== */
/* l-section--soft alias (HTML後方互換) */
.l-section--soft { background: var(--color-bg-off); }

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
