/* ============================================================
   SECTIONS — page-specific layouts
   ・各セクションは "Frame" として Auto Layout化されている
   ・セクション内の構造も flex / grid + gap で構築
   ============================================================ */

/* ══════════════════════════════════════════════════════
   NAV — top frame
   ══════════════════════════════════════════════════════ */
.s-nav {
  position: sticky; top: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0 var(--container-pad-x);
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition:
    top var(--duration-base) var(--ease-out),
    width var(--duration-base) var(--ease-out),
    padding var(--duration-base) var(--ease-out),
    border-radius var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}
.s-nav--floating {
  position: fixed;
  top: var(--space-2);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-10));
  max-width: 1160px;
  padding: 0 36px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.50);
}
@media (max-width: 480px) {
  .s-nav--floating {
    width: calc(100% - var(--space-2) * 2);
    padding: 0 var(--space-2);
  }
}
.s-nav__logo { display: inline-flex; align-items: center; }
.s-nav__logo img { height: 22px; width: auto; display: block; }
.s-nav__logo img.s-nav__logo-mark { display: none; }
.s-nav--floating .s-nav__logo img.s-nav__logo-full { display: none; }
.s-nav--floating .s-nav__logo img.s-nav__logo-mark { display: block; height: 26px; }

.s-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.s-nav__links a {
  color: #111111;
  font-size: var(--text-base);
  transition: color var(--duration-fast) var(--ease-out);
}
.s-nav__links a:hover { color: #888888; }
.s-nav__cta.c-button--outline { border-color: transparent; background: #F4F4F4; }
.s-nav__cta.c-button--outline:hover { background: #111111; color: #ffffff; border-color: transparent; }
.s-nav--floating .s-nav__cta.c-button--outline { border-color: transparent; background: #F4F4F4; }
.s-nav--floating .s-nav__cta.c-button--outline:hover { background: #111111; color: #ffffff; border-color: transparent; }
.s-nav__cta.c-button--primary {
  background: #00E911;
  color: #111111;
  border-color: #00E911;
}
.s-nav__cta.c-button--primary:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.s-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ── Hamburger button ─────────────────────────────────── */
.s-nav__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  margin-left: var(--space-1);
  flex-shrink: 0;
}
.s-nav__hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #111111;
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}
.s-nav__hamburger span:nth-child(1) { top: 14px; }
.s-nav__hamburger span:nth-child(2) { top: 21px; }
.s-nav__hamburger span:nth-child(3) { top: 28px; }

/* Show hamburger / hide inline links once items would wrap (~1100px) */
@media (max-width: 1100px) {
  .s-nav__links { display: none; }
  .s-nav__hamburger { display: block; }
}
/* Below ~520px, also collapse the CTA buttons into the drawer */
@media (max-width: 520px) {
  .s-nav__cta { display: none; }
}
@media (max-width: 480px) {
  .s-nav { height: 56px; }
}

/* ── Drawer overlay ───────────────────────────────────── */
.s-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 10);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}
.s-nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.s-nav-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}
.s-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: #ffffff;
  padding: 88px var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.16);
  overflow-y: auto;
}
.s-nav-drawer.is-open .s-nav-drawer__panel {
  transform: translateX(0);
}
.s-nav-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.s-nav-drawer__close span {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 21px;
  height: 2px;
  background: #111111;
  border-radius: 1px;
}
.s-nav-drawer__close span:nth-child(1) { transform: rotate(45deg); }
.s-nav-drawer__close span:nth-child(2) { transform: rotate(-45deg); }
.s-nav-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.s-nav-drawer__actions .c-button {
  width: 100%;
  justify-content: center;
}
.s-nav-drawer__actions .c-button--outline {
  border-color: transparent;
  background: #F4F4F4;
  font-weight: var(--weight-medium);
}
.s-nav-drawer__actions .c-button--outline:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.s-nav-drawer__actions .c-button--primary {
  background: #00E911;
  color: #111111;
  border-color: #00E911;
  font-weight: var(--weight-medium);
}
.s-nav-drawer__actions .c-button--primary:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.s-nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.s-nav-drawer__links li {
  border-bottom: 1px solid var(--color-border-subtle);
}
.s-nav-drawer__links a {
  display: block;
  padding: 18px 8px;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: #111111;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
.s-nav-drawer__links a:hover {
  color: var(--color-text-secondary);
}

/* ══════════════════════════════════════════════════════
   HERO — Editorial collage portrait
   Layout: muted sage background, side-profile portrait on the
   left, MV/CM/Lyric Video thumbnails arranged as taped paper
   pieces exploding from the subject's head. Title block sits
   bottom-right in the negative space.
   ══════════════════════════════════════════════════════ */
.s-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2728 / 1536;
  overflow: hidden;
  color: #f4f4f2;
  background-color: #D8D8D8;
}
.s-hero::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2.778vw solid #00E911;
  border-radius: 6.944vw;
  z-index: 6;
  pointer-events: none;
  clip-path: inset(60% 0 0 0);
}
.s-hero::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2.778vw solid #00E911;
  border-radius: 6.944vw;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 480px) {
  .s-hero::before {
    border-width: 5.556vw;
    border-radius: 13.889vw;
  }
  .s-hero::after {
    border-width: 5.556vw;
    border-radius: 13.889vw;
  }
  .s-hero { overflow: visible; }
  .s-hero__person {
    width: 80%;
    height: 100%;
    overflow: hidden;
  }
  .s-hero__person-img {
    height: 100% !important;
    width: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── Full-bleed main visual ───────────────────────────── */
.s-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.s-hero__visual > img {
  width: 100%;
  height: auto;
  display: block;
}
.s-hero__bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* ── Parts collage ────────────────────────────────────── */
.s-hero__parts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.s-hero__part {
  position: absolute;
  display: block;
  max-width: none;
}







/* ── SP gradient overlay (hidden on desktop) ─────────────── */
.s-hero__sp-overlay {
  display: none;
}

/* ── Person — left side, bottom-aligned, cycling ─────────── */
.s-hero__person {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  overflow: visible;
  z-index: 5;
  pointer-events: none;
}
.s-hero__person-img {
  position: absolute;
  bottom: 0;
  left: calc(50% + 56px);
  transform: translateX(-50%) translateY(28%) scale(1.3);
  transform-origin: bottom center;
  height: auto;
  width: auto;
  display: block;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 1.2s ease, filter 1.2s ease;
}
.s-hero__person-img.is-active { opacity: 1; filter: blur(0px); }

/* ── Border text canvas ───────────────────────────────────── */
.s-hero__btext-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.s-hero__btext-canvas--back  { z-index: 4; clip-path: inset(0 0 30% 0); }
.s-hero__btext-canvas--front { z-index: 7; clip-path: inset(50% 0 0 0); }

.s-hero__part--p12 { display: none; }
/* z-index = depth order (back→front): 7→4→9→6→11→1→8→5→2→10→3 */
.s-hero__part--p7  { width: 18.6%; left: 42%;  top: -12%;  z-index:  1; animation: p7-float 5s ease-in-out infinite; }
@keyframes p7-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p4  { width: 21.8%; left: -5%;  top: 65%;  z-index:  2; animation: p4-float 8s ease-in-out infinite; }
@keyframes p4-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p9  { width: 27.3%; left: 69%;  top:  4%;  z-index:  3; animation: p9-float 5s ease-in-out infinite; }
@keyframes p9-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p6  { width: 29.4%; left: 27%;  top: 10%;  z-index: 15; animation: p6-float 4s ease-in-out infinite; }
@keyframes p6-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p2  { width: 25%; left: 46%;  top: 49%;  z-index: 2; animation: p2-spin 18s linear infinite; transform-origin: center center; }
@keyframes p2-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.s-hero__part--p11 { width: 40%; height: auto; left: 10%; bottom: 0; top: auto; z-index: 10; }
.s-hero__part--p1  { width: 32%; left: -8%; top:  5%;  z-index:  6; animation: p1-spin 30s linear infinite; transform-origin: center center; }
@keyframes p1-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.s-hero__part--p8  { width: 22%; left: 44%;  top: 39%;  z-index:  1; animation: p8-float 6s ease-in-out infinite; }
@keyframes p8-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p5  { width: 9.5%; left:  3%;  top: 50%;  z-index:  8; animation: p5-float 7s ease-in-out infinite; }
@keyframes p5-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p10 { width:  9.5%; left: 85%;  top: 14%;  z-index: 25; animation: p10-float 6s ease-in-out infinite; }
@keyframes p10-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}
.s-hero__part--p3  { width: 34.7%; left: 73%;  top: 20%;  z-index:  2; animation: p3-spin 24s linear infinite; transform-origin: center center; }
@keyframes p3-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Soft right-side scrim so overlaid text stays legible against
   the collage area regardless of source-image variation. */
.s-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(to right, rgba(220, 220, 220, 0.4) 0%, rgba(255, 255, 255, 0.5) 55%);
}

/* ── Collage layer ────────────────────────────────────── */
.s-hero__collage {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* Glass card base — frosted floating panel.
   Replaces the previous taped-paper aesthetic with a clean
   glassmorphism treatment matching the latest direction. */
.c-paper {
  position: absolute;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 22px 50px -18px rgba(20,28,22,0.5),
    0 4px 14px -4px rgba(20,28,22,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.08);
}
/* Top highlight sheen */
.c-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 38%);
  pointer-events: none;
  z-index: 1;
}
/* Caption strip */
.c-paper figcaption {
  position: absolute;
  left: 12px; right: 12px; bottom: 10px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-display);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.c-paper__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.c-paper__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* Size tiers */
.c-paper--lg { width: 240px; height: 160px; }
.c-paper--md { width: 175px; height: 118px; }
.c-paper--sm { width: 124px; height:  84px; }

/* Solid glass accents — no thumbnail, just translucent panes */
.c-paper--solid::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}
.c-paper--orange {
  background: linear-gradient(160deg, rgba(213,112,58,0.55), rgba(213,112,58,0.32));
  width: 92px; height: 116px;
  border-color: rgba(255,210,180,0.6);
}
.c-paper--cream {
  background: linear-gradient(160deg, rgba(255,255,255,0.32), rgba(255,255,255,0.14));
  width: 78px; height: 94px;
}

/* Spec / label glass chips */
.c-paper--note {
  width: 175px;
  padding: 12px 14px 14px;
  background: rgba(255,255,255,0.22);
  font-family: var(--font-mono, 'SF Mono', monospace);
  font-size: 10px;
  font-weight: 500;
  color: #111111;
  display: flex;
  flex-direction: column;
  gap: 3px;
  letter-spacing: 0;
  border-radius: 12px;
}
.c-paper__line {
  display: block;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

/* Positioning — thumbnails clustered around / spilling out of head.
   Coordinates assume portrait sits ~6%–44% horizontal band. The
   collage spans roughly 18%–86% horizontal, top 4% – 62%. */
/* Calmer, mostly-upright tilts so they read as floating glass
   panels rather than scattered photos. */
.c-paper--n1 { top:  8%; left: 30%; transform: rotate(-3deg); z-index: 4; }
.c-paper--n2 { top:  4%; left: 49%; transform: rotate( 2deg); z-index: 5; }
.c-paper--n3 { top: 12%; right:14%; transform: rotate(-1deg); z-index: 5; }
.c-paper--n4 { top: 28%; left: 40%; transform: rotate( 3deg); z-index: 4; }
.c-paper--n5 { top: 34%; right:28%; transform: rotate(-2deg); z-index: 6; }
.c-paper--n6 { top: 22%; right: 4%; transform: rotate( 2deg); z-index: 4; }
.c-paper--n7 { top: 46%; left: 32%; transform: rotate(-2deg); z-index: 6; }
.c-paper--n8 { top: 42%; right:10%; transform: rotate( 3deg); z-index: 5; }
.c-paper--n9 { top: 52%; right:36%; transform: rotate( 1deg); z-index: 7; }

.c-paper--s1 { top: 20%; left: 54%; transform: rotate( 4deg); z-index: 3; }
.c-paper--s2 { top:  6%; left: 38%; transform: rotate(-4deg); z-index: 3; }
.c-paper--s3 { top: 38%; right:18%; transform: rotate( 3deg); z-index: 3; }

.c-paper--note1 { top:  6%; right: 28%; transform: rotate( 2deg); z-index: 7; }
.c-paper--note2 { top: 30%; left: 56%;  transform: rotate(-2deg); z-index: 7; }
.c-paper--note3 { top: 58%; right: 6%;  transform: rotate( 3deg); z-index: 7; }

/* ── Foreground content — right-side overlay block ─────── */
.s-hero__content {
  position: absolute;
  right: calc(14% - 30px);
  bottom: calc(18% + 20px);
  top: auto;
  transform: none;
  width: 44%;
  max-width: 580px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  text-align: right;
}
.s-hero__frame {
  background: rgba(216, 216, 216, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 40px;
  border-radius: 16px;
}
.s-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f4f4f2;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.s-hero__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26pt);
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3em;
  letter-spacing: -0.01em;
  color: #111111;
  text-align: right;
  font-feature-settings: "palt" 1;
  margin: -8px 0 0;
  text-shadow: none;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: auto;
}
.s-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22pt, 5.5vw, 40pt);
  font-weight: 700;
  color: #111111;
  margin: 16px 0 -10px;
  text-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  text-align: left;
  white-space: nowrap;
}
.s-hero__sub-line {
  display: block;
  line-height: 0.5;
}
.s-hero__ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.s-hero__ctas .c-button--primary {
  background: linear-gradient(to right, #111111 50%, #00E911 50%);
  background-size: 210% 100%;
  background-position: right center;
  color: #111111;
  border: none;
  transition: background-position 0.35s ease, color 0.3s ease;
}
.s-hero__ctas .c-button--primary:hover {
  background-position: left center;
  color: #ffffff;
  border: none;
}
.c-button__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.c-button--primary:hover .c-button__arrow {
  transform: translateX(4px);
}
.s-hero__ctas .c-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Responsive — visual stays full-bleed, content overlay shifts
   to a bottom-anchored band with a stronger scrim. */
@media (max-width: 900px) {
  .s-hero__content { width: 54%; gap: 14px; right: 14%; bottom: 18%; top: auto; left: auto; }
  .s-hero__ctas .c-button--lg { font-size: var(--text-lg); padding: var(--space-2) var(--space-4); }
  .s-hero__visual::after { background: linear-gradient(to right, rgba(220, 220, 220, 0.4) 0%, rgba(255, 255, 255, 0.5) 55%); }
  .c-paper--lg { width: 150px; height: 100px; }
  .c-paper--md { width: 110px; height: 75px; }
  .c-paper--sm { width: 78px;  height: 54px; }
  .c-paper--note { width: 130px; font-size: 8.5px; }
}

/* ══════════════════════════════════════════════════════
   FEATURED CASES — carousel (3-up)
   ══════════════════════════════════════════════════════ */
.s-featured {
  position: relative;
  z-index: 1;
  padding: var(--space-10) 0 var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-surface-primary);
  overflow: hidden;
}
.s-featured__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--container-pad-x);
  margin-bottom: 40px;
}
.s-featured__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
}
.s-featured__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.s-featured__title {
  font-family: var(--font-display);
  font-size: var(--text-7xl);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-snug);
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  font-feature-settings: "palt" 1;
}
.s-featured__nav {
  position: absolute;
  right: var(--container-pad-x);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: var(--space-1);
}
.s-featured__nav .c-carousel-btn,
.s-featured__nav-sp .c-carousel-btn,
.s-testi__nav-sp .c-carousel-btn {
  border-color: #111111;
}
.c-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface-primary);
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-out),
    color      var(--duration-fast) var(--ease-out),
    border     var(--duration-fast) var(--ease-out),
    transform  var(--duration-fast) var(--ease-out);
}
.c-carousel-btn:hover {
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: var(--color-text-on-inverse);
}
.c-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: var(--color-surface-primary);
  color: var(--color-text-primary);
  border-color: var(--color-border-strong);
}
.c-carousel-btn svg { width: 20px; height: 20px; }

.s-featured__viewport {
  overflow: hidden;
  padding: 0 var(--container-pad-x);
}
.s-featured__track {
  display: flex;
  gap: var(--space-3);
  transition: transform var(--duration-base) var(--ease-out);
  will-change: transform;
}

.c-case-card {
  flex: 0 0 calc((100% - var(--space-3) * 2) / 3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.c-case-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-secondary);
}
.c-case-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--duration-base) var(--ease-out);
}
.c-case-card:hover .c-case-card__thumb img { transform: scale(1.06); }
.c-case-card__play {
  position: absolute;
  inset: auto auto var(--space-2) var(--space-2);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.c-case-card__play svg { width: 14px; height: 14px; }
.c-case-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.c-case-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  font-feature-settings: "palt" 1;
}
.c-case-card__desc {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-top: var(--space-1);
  margin-bottom: 0;
}
.c-case-card__creators {
  font-family: "Montserrat", var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.c-case-card__creator-names {
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

@media (max-width: 1100px) {
  .c-case-card { flex: 0 0 calc((100% - var(--space-3)) / 2); }
}
@media (max-width: 480px) {
  .s-featured__header { flex-direction: column; align-items: center; }
  .s-featured__title { font-size: var(--text-4xl); }
  .s-featured__nav { display: none; }
  .c-case-card { flex: 0 0 100%; }
}
.s-featured__nav-sp,
.s-testi__nav-sp {
  display: none;
}
@media (max-width: 480px) {
  .s-featured__nav-sp,
  .s-testi__nav-sp {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
  }
}

/* ══════════════════════════════════════════════════════
   CREATOR BANNER — typo marquee
   ══════════════════════════════════════════════════════ */
.s-creator {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  padding: 0;
  overflow: hidden;
}
.s-creator__title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-extrabold);
  text-align: center;
  color: var(--color-text-primary);
  letter-spacing: -0.04em;
  word-break: keep-all;
  font-feature-settings: "palt" 1;
}
.s-creator__track-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.s-creator__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0;
  animation: scroll-left 160s linear infinite;
}
.s-creator__track:hover { animation-play-state: paused; }
.s-creator__item {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: var(--weight-black);
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 var(--space-4);
  user-select: none;
}
.s-creator__sep {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: var(--weight-black);
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
  display: inline-block;
  transform: scaleX(0.8) scaleY(0.8) translateY(-8px);
  align-self: center;
}

/* ══════════════════════════════════════════════════════
   SOLUTION — stacking cards
   ══════════════════════════════════════════════════════ */
.s-solution {
  position: relative;
  padding: var(--space-10) 0 0;
  background: #00E911;
  color: var(--color-text-on-inverse);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.s-solution > * { position: relative; z-index: var(--z-base); }
.s-solution .c-section-header { padding: 0 var(--container-pad-x); margin-bottom: 40px; }
.s-solution .c-section-header__title { color: var(--color-text-on-inverse); }
.s-solution .c-section-header__sub   { color: rgba(255, 255, 255, 0.45); }

.s-solution__stack {
  padding: 0 var(--container-pad-x) var(--space-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1100px) {
  .s-solution__stack { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .s-solution__stack { grid-template-columns: 1fr; gap: var(--space-2); }
  .c-sol-card { padding: var(--space-3); }
}

.c-sol-card {
  display: block;
  padding: var(--space-3) var(--space-6) var(--space-6);
  border-radius: var(--radius-lg);
  background: #111111;
  border: none;
  box-shadow: var(--shadow-card);
}

.c-sol-card__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
.c-sol-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.c-sol-card__num,
.c-sol-card__label {
  font-family: "Montserrat", var(--font-display);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}
.c-sol-card__num {
  font-size: var(--text-3xl);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}
.c-sol-card__label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.c-sol-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.c-sol-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-feature-settings: "palt" 1;
  min-height: calc(var(--text-2xl) * 1.3 * 2);
}
.c-sol-card__desc {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.7);
  max-width: none;
  font-feature-settings: "palt" 1;
  text-align: left;
}
.c-sol-card__icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-1);
  flex-shrink: 0;
}
.c-sol-card__thumb {
  display: block;
  height: 76px;
  width: auto;
  margin: 0;
  filter: brightness(0) invert(1);
  overflow: visible;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.c-sol-card__thumb--nofilter {
  filter: none;
}
.c-sol-card.is-visible .c-sol-card__thumb--nofilter {
  opacity: 1;
}
.c-sol-card__thumb--about1 {
  height: 48px;
}
.c-sol-card.is-visible .c-sol-card__thumb {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--sol-i, 0) * 0.1s);
}

/* ══════════════════════════════════════════════════════
   CASES
   ══════════════════════════════════════════════════════ */
.s-cases {
  position: relative;
  background-color: var(--color-surface-tertiary);
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.s-cases__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.c-case {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.c-case__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.35) saturate(0.6);
  transform: scale(1.1);
  z-index: 0;
}
.c-case__video {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
}
.c-case__video iframe { width: 100%; height: 100%; border: none; display: block; }

.c-case__meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.c-case__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.03em;
  line-height: var(--leading-snug);
  color: var(--color-text-on-inverse);
  font-feature-settings: "palt" 1;
}
.c-case__creators {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-case__creators-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.c-case__creators-names {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(255,255,255,0.75);
}

@media (max-width: 480px) {
  .c-case { aspect-ratio: 16 / 9; }
  .c-case__meta { padding: var(--space-3); }
  .c-step__desc { font-size: 15px; }
  .c-step__title { font-size: 18px; }
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS — Steps
   ══════════════════════════════════════════════════════ */
.s-how { background: #2e2e2e url('../assets/icons/step_1.jpg') center center / cover no-repeat; gap: 0; }
.s-how .c-section-header { margin-bottom: 40px; }
.s-how .c-section-header__title { color: #ffffff; }
.s-how .c-step__title { color: #ffffff; }
.s-how .c-step__desc  { color: rgba(255,255,255,0.65); }
.s-how .c-step__line  { background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent); }
.s-how .c-how__cta a  { color: #ffffff; }
.s-how .c-button--primary {
  background: linear-gradient(to right, #111111 50%, #00E911 50%);
  background-size: 210% 100%;
  background-position: right center;
  color: #111111;
  border: none;
  transition: background-position 0.35s ease, color 0.3s ease;
}
.s-how .c-button--primary:hover {
  background-position: left center;
  color: #ffffff;
  border: none;
}

/* ── Embedded "How It Works" inside .s-solution dark surface ── */
.s-solution__how {
  padding: var(--space-3) var(--container-pad-x) var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}
.s-solution__how .c-section-header__title { color: #ffffff; }
.s-solution__how .c-step__title { color: #ffffff; }
.s-solution__how .c-step__desc  { color: #ffffff; }
.s-solution__how .c-step__num {
  border: 1px solid #ffffff;
}
.s-solution__how .c-step__line {
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}

.c-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-0);
  max-width: 860px;
  margin: 0 auto;
}
.c-step {
  display: flex;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
}
.c-step:last-child { padding-bottom: 0; }

.c-step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 52px;
  gap: var(--space-1);
}
.c-step__num {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: #ffffff;
  flex-shrink: 0;
}
.c-step__line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, #BBBBBB, transparent);
}
.c-step:last-child .c-step__line { display: none; }

.c-step__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-2);
}
.c-step__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  color: var(--color-text-primary);
}
.c-step__desc {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

/* ══════════════════════════════════════════════════════
   RIGHTS / STOP FAKE — Rights infringement prevention
   Layout: dark surface, hero intro card + 3-up feature grid
   ══════════════════════════════════════════════════════ */
.s-rights {
  background: #111111;
  color: var(--color-text-on-inverse);
  position: relative;
  overflow: hidden;
  gap: 0;
}
.s-rights .c-section-header { margin-bottom: 40px; }
.s-rights .c-section-header__title { color: var(--color-text-on-inverse); }
.s-rights__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* ── Hero intro card ────────────────────────────────── */
.c-stopfake {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
}
.c-stopfake__logo {
  width: 20%;
  max-width: 20%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 480px) {
  .c-stopfake__logo {
    width: 45%;
    max-width: 240px;
  }
}

/* Left: scan / shield visual */
.c-stopfake__visual {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 50%, rgba(213,112,58,0.18) 0%, rgba(213,112,58,0) 60%),
    linear-gradient(160deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-stopfake__scan {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14% 0;
  pointer-events: none;
  opacity: 0.55;
}
.c-stopfake__scan-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.18) 25%,
    rgba(213,112,58,0.5) 50%,
    rgba(255,255,255,0.18) 75%,
    transparent 100%
  );
}
.c-stopfake__shield {
  position: relative;
  width: 156px;
  height: 156px;
  color: #ffffff;
  z-index: 2;
  filter: drop-shadow(0 6px 24px rgba(213,112,58,0.35));
}
.c-stopfake__bracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(255,255,255,0.5);
  border-style: solid;
  border-width: 0;
}
.c-stopfake__bracket--tl { top: 14px; left: 14px;     border-top-width: 1.5px; border-left-width: 1.5px; }
.c-stopfake__bracket--tr { top: 14px; right: 14px;    border-top-width: 1.5px; border-right-width: 1.5px; }
.c-stopfake__bracket--bl { bottom: 14px; left: 14px;  border-bottom-width: 1.5px; border-left-width: 1.5px; }
.c-stopfake__bracket--br { bottom: 14px; right: 14px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* Right: body */
.c-stopfake__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  justify-content: center;
  text-align: left;
  width: 80%;
  max-width: 80%;
}
.c-stopfake__eyebrow {
  font-family: "Montserrat", var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.c-stopfake__wordmark {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: var(--space-1) 0 var(--space-1);
}
.c-stopfake__wm-row { display: block; }
.c-stopfake__wm-row--stop {
  color: #ffffff;
}
.c-stopfake__wm-row--fake {
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
  position: relative;
}
.c-stopfake__wm-row--fake::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 6px;
  background: #d5703a;
  transform: translateY(-50%) rotate(-2deg);
  border-radius: 2px;
}
.c-stopfake__lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
  color: #ffffff;
  font-feature-settings: "palt" 1;
  text-align: center;
}
.c-stopfake__desc {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.72);
  font-feature-settings: "palt" 1;
}

/* ── 3-up feature grid ──────────────────────────────── */
.s-rights__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.c-rights-feature {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: #222222;
  border: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: center;
  text-align: center;
}
.c-rights-feature__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding-bottom: 0;
}
.c-rights-feature__head:empty { display: none; }
.c-rights-feature__num {
  font-family: "Montserrat", var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}
.c-rights-feature__label {
  font-family: "Montserrat", var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.c-rights-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-feature-settings: "palt" 1;
  margin-top: 0;
}
.c-rights-feature__desc {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.7);
  font-feature-settings: "palt" 1;
  text-align: left;
  margin-top: var(--space-1);
}

@media (max-width: 900px) {
  .c-stopfake { grid-template-columns: 1fr; gap: var(--space-3); padding: var(--space-3) var(--space-4); }
  .c-stopfake__logo { max-width: 160px; margin: 0 auto; }
  .s-rights__features { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   SOCIAL PROOF — Testimonials marquee
   ══════════════════════════════════════════════════════ */
.s-social { background: var(--color-surface-primary); gap: 0; }
.s-social .c-section-header { margin-bottom: 40px; }


/* Latin-only marquee + step numerals → Montserrat */
.s-creator__item,
.c-step__num { font-family: 'Montserrat', sans-serif; }

.c-testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  padding: 0 var(--container-pad-x);
}
@media (max-width: 1100px) {
  .c-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .s-social {
    padding-left: 0;
    padding-right: 0;
  }
  .c-testi-scroll-wrap {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 40px var(--container-pad-x) 40px;
    margin-top: -40px;
    margin-bottom: -40px;
    scroll-padding-left: var(--container-pad-x);
  }
  .c-testi-scroll-wrap::-webkit-scrollbar { display: none; }
  .c-testi-grid {
    display: flex !important;
    overflow: visible !important;
    gap: var(--space-3);
    padding: 0 !important;
  }
  .c-testi-grid .c-testi-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }
  .c-testi-grid .c-testi-card:last-child { margin-right: var(--container-pad-x); }
  .c-testi-dots { display: none; }
  .c-testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-border-strong);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
  }
  .c-testi-dot.is-active {
    background: var(--color-brand-primary);
    transform: scale(1.4);
  }
}

.c-testi-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: #F9F9F9;
  border-top: none;
  box-shadow: none;
}
.c-testi-card:hover {
  box-shadow: none;
  transform: none;
}
.c-testi-card__highlight {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.5 !important;
  color: #111111;
  margin-bottom: -6px;
}
.c-testi-card__quote {
  font-size: var(--text-md);
  line-height: 1.75 !important;
  color: rgba(17,17,17,0.7);
  flex: 1;
}
.c-testi-card__details {
  flex: 1;
}
.c-testi-card__details summary {
  list-style: none;
  cursor: pointer;
}
.c-testi-card__details summary::-webkit-details-marker { display: none; }
.c-testi-card__quote--rest {
  margin-top: 0.5em;
}
.c-testi-card__more {
  display: inline;
  margin-left: 0.3em;
  font-size: var(--text-xs);
  color: rgba(17,17,17,0.45);
  white-space: nowrap;
}
.c-testi-card__more::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.15em);
  margin-left: 0.3em;
  vertical-align: middle;
}
.c-testi-card__details[open] .c-testi-card__more { display: none; }
.c-testi-card__less {
  display: none;
  margin-left: 0.3em;
  font-size: var(--text-xs);
  color: rgba(17,17,17,0.45);
  white-space: nowrap;
}
.c-testi-card__less::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-135deg) translateY(0.15em);
  margin-left: 0.3em;
  vertical-align: middle;
}
.c-testi-card__details[open] .c-testi-card__less { display: inline; }
.c-testi-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: 4px;
}
.c-testi-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-testi-card__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: #111111;
}
.c-testi-card__meta {
  font-size: var(--text-xs);
  color: rgba(17,17,17,0.55);
  line-height: 1.3 !important;
}

/* ══════════════════════════════════════════════════════
   VISION
   ══════════════════════════════════════════════════════ */
.s-vision {
  background: #00E911;
  text-align: center;
  padding: var(--space-15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.s-vision__title {
  font-family: var(--font-display);
  font-size: var(--text-7xl);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-snug);
  max-width: 760px;
  color: var(--color-text-on-inverse);
  word-break: keep-all;
  font-feature-settings: "palt" 1;
}
.s-vision__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 700px;
}
.s-vision__body p {
  font-size: var(--text-xl);
  line-height: var(--leading-loose);
  color: var(--color-text-on-inverse-2);
}
.s-vision__body p.is-highlight { color: var(--color-text-on-inverse); }
.s-vision__close {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-on-inverse);
}

/* ══════════════════════════════════════════════════════
   PRICING — fee structure (hero + comparison)
   ══════════════════════════════════════════════════════ */
.s-pricing {
  background: var(--color-surface-primary);
  gap: 0;
}
.s-pricing .c-section-header { margin-bottom: 40px; }

/* ── Hero amount block ──────────────────────────────── */
.s-pricing__hero {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}
.s-pricing__amount-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-top: -16px;
  margin-bottom: var(--space-9);
}
.s-pricing__amount {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", var(--font-display);
  font-size: clamp(55px, 9.2vw, 126px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #111111;
}
.s-pricing__amount-yen {
  font-size: 0.55em;
  font-weight: inherit;
}
.s-pricing__amount-img {
  position: relative;
  z-index: 1;
  height: clamp(84px, 14vw, 196px);
  width: auto;
  display: block;
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.s-pricing__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: slowSpin 20s linear infinite;
  opacity: 0.5;
}

.s-pricing__lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  color: #111111;
  margin-top: 0;
  font-feature-settings: "palt" 1;
}
.s-pricing__sub {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  font-feature-settings: "palt" 1;
}
.s-pricing__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1);
  margin-top: var(--space-3);
}
.s-pricing__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #111111;
  background: transparent;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: #111111;
  letter-spacing: 0.02em;
}

/* ── Comparison table ───────────────────────────────── */
.s-pricing__compare {
  max-width: 880px;
  margin: 48px auto 0;
  position: relative;
  padding: 16px 0;        /* lets the raised dark card extend above/below */
}
/* Light-grey base card behind the entire table (row labels + theirs column). */
.s-pricing__compare-base {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  bottom: 16px;
  background: transparent;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17,17,17,0.15);
  box-shadow: none;
  z-index: 0;
  pointer-events: none;
}
/* Raised dark-grey card stacked over the middle COLOWORKS column. */
.s-pricing__compare-card {
  position: absolute;
  left: 17%;              /* row-label is 17%, dark card starts after it */
  width: 41%;             /* matches COLOWORKS column share */
  top: 0;
  bottom: 0;
  background: #111111;
  border-radius: var(--radius-md);
  border-top: none;
  box-shadow: none;
  z-index: 1;
  pointer-events: none;
}
.c-compare-table {
  width: 100%;
  position: relative;
  z-index: 2;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  font-family: var(--font-display);
  table-layout: fixed;
}
.c-compare-table thead th {
  padding: var(--space-3) var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(17,17,17,0.15);
  position: relative;
}
.c-compare-table thead th.c-compare-table__rowhead {
  background: transparent;
}

/* COLOWORKS column — transparent so the raised dark card shows through */
.c-compare-table__col--ours {
  background: transparent;
  color: #ffffff;
  font-size: var(--text-lg) !important;
  letter-spacing: 0.04em;
  border-bottom-color: rgba(255,255,255,0.35) !important;
}
.c-compare-table__col--theirs {
  background: transparent;
  color: #111111;
  font-weight: var(--weight-medium);
}
.c-compare-table tbody tr + tr th,
.c-compare-table tbody tr + tr td {
  border-top: 1px solid rgba(17,17,17,0.15);
}
.c-compare-table tbody tr + tr .c-compare-table__cell--ours {
  border-top-color: rgba(255,255,255,0.35) !important;
}
.c-compare-table__rowhead {
  padding: var(--space-3) var(--space-2);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  background: transparent;
  width: 17%;             /* 50% smaller than before (34%) */
  vertical-align: middle;
}
.c-compare-table__cell {
  padding: var(--space-3);
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  vertical-align: middle;
}
/* COLOWORKS body cells — transparent over the dark raised card */
.c-compare-table__cell--ours {
  background: transparent;
  color: #ffffff;
  border-top-color: #ffffff !important;
}
.c-compare-table__cell--ours .c-compare-table__strong {
  color: #ffffff;
}
.c-compare-table__cell--theirs {
  background: transparent;
  color: var(--color-text-muted);
}
.c-compare-table__cell--theirs .c-compare-table__strong {
  color: var(--color-text-secondary);
  font-weight: var(--weight-semibold);
}
.c-compare-table__strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.01em;
}

.s-pricing__note {
  margin-top: var(--space-2);
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 480px) {
  .c-compare-table thead th,
  .c-compare-table__cell,
  .c-compare-table__rowhead { padding: var(--space-2); font-size: var(--text-sm); }
  .c-compare-table__strong { font-size: var(--text-lg); }
  .c-compare-table__col--ours { font-size: var(--text-md) !important; }
}

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.s-faq { background: #00E911; gap: 0; }
.s-faq .c-section-header { margin-bottom: 40px; }
.s-faq .c-section-header__title,
.s-faq .c-section-header__label { color: #ffffff; }
.c-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.c-faq-item {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-sizing: border-box;
  margin-bottom: 8px;
}
.c-faq-item:first-child { border-top: none; }
.c-faq-item[open] { background: #ffffff; border-radius: var(--radius-md); border: none; }

.c-faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 22px var(--space-4);
  cursor: pointer;
  list-style: none;
  font-size: var(--text-lg);
  line-height: 1.0;
  font-weight: var(--weight-semibold);
  color: #111111;
  user-select: none;
  transition: color var(--duration-fast) var(--ease-out);
}
.c-faq-item__summary::-webkit-details-marker { display: none; }
.c-faq-item__summary::marker { content: ''; display: none; }
.c-faq-item__summary:hover { color: var(--color-text-secondary); }

.c-faq-item__icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  color: var(--color-text-primary);
}
.c-faq-item__icon::before,
.c-faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: opacity var(--duration-base) var(--ease-out);
}
/* horizontal bar — always visible (becomes the "−" when open) */
.c-faq-item__icon::before {
  width: 14px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
/* vertical bar — hidden when open to turn "+" into "−" */
.c-faq-item__icon::after {
  width: 1.6px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.c-faq-item[open] .c-faq-item__icon::after { opacity: 0; }

.c-faq-item__answer {
  padding: 0 var(--space-4) 22px;
  font-size: var(--text-md);
  line-height: 1.6 !important;
  color: var(--color-text-secondary);
}

/* ══════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════ */
.s-cta {
  background: var(--color-surface-secondary);
  padding: var(--space-15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.s-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-8xl);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  max-width: 820px;
  color: var(--color-text-primary);
  word-break: keep-all;
  font-feature-settings: "palt" 1;
}
.s-cta__sub {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
}
.s-cta__buttons {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   CONTACT CTA — For Companies (B2B inquiry)
   ══════════════════════════════════════════════════════ */
.s-contact {
  background: #00E911;
  color: var(--color-text-on-inverse);
  padding: var(--space-12) var(--container-pad-x);
}
.s-contact__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}
.s-contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  max-width: 720px;
}
.s-contact__eyebrow {
  font-family: "Montserrat", var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding-bottom: var(--space-1);
}
.s-contact__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: #ffffff;
  font-feature-settings: "palt" 1;
  word-break: keep-all;
}
.s-contact__desc {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.72);
  font-feature-settings: "palt" 1;
  margin-top: var(--space-1);
}
.s-contact__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  width: 100%;
  max-width: 820px;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.s-contact__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
}
.s-contact__meta-label {
  font-family: "Montserrat", var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-contact__meta-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  color: #ffffff;
  font-feature-settings: "palt" 1;
}
.s-contact__actions {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.s-contact__actions .c-button--primary {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}
.s-contact__actions .c-button--primary:hover {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
}

@media (max-width: 480px) {
  .s-contact { padding: var(--space-10) var(--container-pad-x); }
  .s-contact__meta { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.s-footer {
  padding: var(--space-5) var(--container-pad-x);
  background: var(--color-surface-primary);
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.s-footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
}
.s-footer__legal a {
  font-size: 12px;
  color: #111111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--duration-fast) var(--ease-out);
}
.s-footer__legal a:hover { color: var(--color-text-muted); }
.s-footer__legal-icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  color: currentColor;
  flex-shrink: 0;
}
.s-footer__legal a:hover { color: var(--color-text-primary); }
.s-footer__logo { display: inline-flex; }
.s-footer__logo img { height: 22px; width: auto; }
.s-footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}
.s-footer__social a {
  width: 24px; height: 24px;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--duration-fast) var(--ease-out);
}
.s-footer__social a:hover { opacity: 0.6; }
.s-footer__social img {
  width: 20px;
  height: 20px;
  display: block;
}
.s-footer__copyright {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .s-hero__frame { padding: 40px; }
  .c-kv-card--lg { width: 360px; height: 232px; }
  .c-kv-card--md { width: 255px; height: 168px; }
  .c-kv-card--sm { width: 165px; height: 108px; }
}
@media (max-width: 900px) {
  .s-hero__frame { padding: 36px; }
}
@media (max-width: 480px) {
  .s-nav__links { display: none; }
  .s-hero__content { width: 80%; gap: 10px; right: 6%; bottom: 6%; top: auto; left: auto; }
  .s-hero__frame { padding: 28px; }
  .s-hero__ctas .c-button--lg { font-size: var(--text-base); padding: 10px var(--space-3); }
  .c-stopfake { padding: 24px 24px !important; }
}
@media (max-width: 480px) {
  .s-hero { aspect-ratio: auto; overflow: hidden; }
  .s-hero__visual { position: relative; inset: auto; width: 100%; aspect-ratio: 750 / 860; background-color: #D8D8D8; overflow: visible; }
  .s-hero__bg  { display: none !important; }
  .s-hero__part { animation: none !important; }
  .s-hero__part--p11 { display: none; }
  .s-hero__part--p12 { display: block; width: 57.7%; height: auto; left: 50%; transform: translateX(-50%); bottom: 0; top: auto; overflow: visible; z-index: 10; }
  .s-hero__part:not(.s-hero__part--p12):not(.s-hero__part--p1):not(.s-hero__part--p2):not(.s-hero__part--p3):not(.s-hero__part--p6):not(.s-hero__part--p5):not(.s-hero__part--p9):not(.s-hero__part--p10):not(.s-hero__part--p4):not(.s-hero__part--p7) { display: none; }
  .s-hero__part--p1 { width: 50.2%; top: 18%; left: 0%; z-index: 5; animation: none; transform: none; }
  .s-hero__part--p2 { width: 42.9%; left: auto; right: 0%; top: 0%; z-index: 5; }
  .s-hero__part--p3 { width: 50.4%; left: auto; right: 0%; top: auto; bottom: 10%; z-index: 5; }
  .s-hero__part--p6 { width: 44%; left: auto; right: 10%; top: calc(26% - 10px); z-index: 15; }
  .s-hero__part--p5 { width: 14.3%; top: 4%; left: calc(8% - 10px); z-index: 15; }
  .s-hero__part--p9 { width: 47.2%; left: 5%; top: 65%; z-index: 5; }
  .s-hero__part--p10 { width: 12.6%; left: auto; right: 5%; top: auto; bottom: 33%; z-index: 5; }
  .s-hero__part--p4 { width: 30.5%; top: 52%; z-index: 5; }
  .s-hero__part--p7 { width: 33.8%; left: auto; right: 0%; top: auto; bottom: 22%; z-index: 5; }
  .s-hero__person { width: 100%; left: 0; top: 0; height: 100%; }
  .s-hero__content {
    left: 50%;
    right: auto;
    bottom: 6%;
    top: auto;
    transform: translateX(-50%);
    width: 72%;
    max-width: none;
    padding: 0;
    gap: 10px;
  }
  .s-hero::before {
    inset: 20px;
    border: 5.556vw solid #00E911;
    border-radius: 13.889vw;
    background: none;
    z-index: 6;
    clip-path: inset(45% 0 0 0);
  }
  .s-hero::after {
    border-width: 5.556vw;
    border-radius: 13.889vw;
    background: none;
    z-index: 3;
  }
  .s-hero__sp-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, transparent 30%, rgba(255, 255, 255, 0.55) 65%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 8;
    pointer-events: none;
  }
  .s-hero__btext-canvas--back  { clip-path: inset(0 0 50% 0); }
  .s-hero__btext-canvas--front { clip-path: inset(35% 0 0 0); }
  .s-hero__frame { padding: 20px; border-radius: 12px; }
  .s-hero__ctas { margin-bottom: 0; margin-top: 16px; }
  .s-hero__title { font-size: 15px; line-height: 1.5; margin-top: 1px; }
  .s-hero__title span { white-space: normal !important; }
  .s-hero__sub { font-size: clamp(10pt, 3.5vw, 13pt) !important; margin-top: 12px; white-space: normal !important; }
  .s-hero__sub-line { line-height: 0.5 !important; }
  .s-hero__eyebrow { font-size: 10px; padding: 6px 12px; }
  .c-kv-card--lg { width: 210px; height: 135px; }
  .c-kv-card--md { width: 150px; height:  98px; }
  .c-kv-card--sm { width: 108px; height:  72px; }
  .c-kv-card--md figcaption,
  .c-kv-card--sm figcaption { display: none; }
  .c-kv-card--lg .c-kv-card__title { display: none; }
  .c-kv-card--lg .c-kv-card__tag { font-size: 9px; }
  .c-sol-card { padding: var(--space-3); }
  .c-sol-card__inner { gap: var(--space-3); }
  .c-sol-card__icon-frame { width: 80px; height: 80px; }
  .c-sol-card__thumb { width: 62px; height: 62px; object-fit: contain; margin-bottom: 0; }
  .c-sol-card__title { min-height: 0; }
  .c-sol-card__thumb--about1 { width: 74px; height: 74px; }
  .c-sol-card__thumb--about2 { width: 74px; height: 74px; }
  .c-sol-card__thumb--about4 { width: 68px; height: 68px; }
  .s-cta__title { font-size: 36px; }
  .c-section-header__title { font-size: 32px; }
  .s-vision__title { font-size: 32px; }
  .s-pricing__amount-row { margin-top: 0; margin-bottom: var(--space-2); transform: scale(1.1); }
  .s-pricing__amount-img { height: clamp(118px, 19.7vw, 270px); }
  .s-how { background: #2e2e2e url('../assets/icons/step_2.jpg') center center / cover no-repeat; }
  .s-pricing__lede { margin-top: -8px !important; margin-bottom: 40px !important; }
  .s-pricing .c-section-header { margin-bottom: 24px; }
  .s-pricing__compare { margin-top: 8px; padding: 16px 2px 20px; overflow-x: scroll; -webkit-overflow-scrolling: touch; width: 100%; scrollbar-width: thin; scrollbar-color: #bbbbbb #eeeeee; }
  .s-pricing__compare::-webkit-scrollbar { height: 4px; }
  .s-pricing__compare::-webkit-scrollbar-track { background: #eeeeee; border-radius: var(--radius-pill); }
  .s-pricing__compare::-webkit-scrollbar-thumb { background: #bbbbbb; border-radius: var(--radius-pill); }
  .s-pricing__compare-base { display: none; }
  .s-pricing__compare-card { display: none; }
  .c-compare-table { width: 520px; background: transparent; box-shadow: 0 0 0 1px rgba(17,17,17,0.15); border-radius: var(--radius-md); }
  .c-compare-table__rowhead {
    width: 120px;
    background: transparent;
  }
  .c-compare-table thead th.c-compare-table__rowhead {
    background: transparent;
    border-top-left-radius: var(--radius-md);
  }
  .c-compare-table__col--ours {
    width: 200px;
    background: #111111;
    border-top: none;
    border-radius: 0;
    padding-top: var(--space-2);
    position: relative;
    z-index: 2;
    box-shadow: none;
  }
  .c-compare-table__col--ours::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .c-compare-table__col--theirs {
    width: 200px;
    background: transparent;
    border-top-right-radius: var(--radius-md);
  }
  .c-compare-table__cell--ours {
    background: #111111;
  }
  /* last row: grey area ends 12px above cell bottom → COLOWORKS appears to float below */
  .c-compare-table tbody tr:last-child .c-compare-table__cell--ours {
    border-radius: 0;
    padding-bottom: var(--space-2);
    position: relative;
    z-index: 2;
  }
  .c-compare-table tbody tr:last-child .c-compare-table__cell--ours::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: #141414;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .c-compare-table tbody tr:last-child .c-compare-table__rowhead,
  .c-compare-table tbody tr:last-child .c-compare-table__cell--theirs { vertical-align: middle; }
  .c-compare-table__cell--theirs {
    background: transparent;
  }
  .c-compare-table tbody tr:last-child .c-compare-table__rowhead {
    border-bottom-left-radius: var(--radius-md);
  }
  .c-compare-table tbody tr:last-child .c-compare-table__cell--theirs {
    border-bottom-right-radius: var(--radius-md);
  }
  .c-rights-feature { padding: var(--space-4) var(--space-3); gap: var(--space-3); }
  .s-rights__features { gap: var(--space-2); }
  .c-rights-feature__title { margin-top: -8px; }
  .c-rights-feature__desc { margin-top: -8px; }
  .s-rights .c-section-header { margin-bottom: 40px; }
  .c-stopfake__logo { margin-top: -16px !important; }
  .c-faq-item__summary { padding-left: 24px; padding-right: 24px; padding-top: 20px; padding-bottom: 20px; line-height: 1.5 !important; font-size: 15px; }
  .c-faq-item__answer { padding-left: 24px; padding-right: 24px; }
  .c-stopfake { padding: 24px 24px !important; }
  .c-stopfake__body { width: 100%; max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   SP 追従 CTA バー — mobile only
   ══════════════════════════════════════════════════════ */
.s-sp-cta {
  display: none;
}
@media (max-width: 480px) {
  .s-sp-cta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--space-2);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: calc(var(--z-nav) - 1);
    padding: var(--space-1) var(--space-2) calc(var(--space-1) + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border-subtle);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  }
  .s-sp-cta .c-button {
    padding: 10px var(--space-3);
    font-size: var(--text-base);
  }
  .s-sp-cta__login {
    flex: 0 0 auto;
    white-space: nowrap;
    border-color: transparent;
    background: #F4F4F4;
    font-weight: var(--weight-medium);
  }
  .s-sp-cta__login:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
  }
  .s-sp-cta__register {
    flex: 1;
    justify-content: center;
    background: #00E911;
    color: #111111;
    border-color: #00E911;
    font-weight: var(--weight-medium);
  }
  /* フッターがCTAバーに隠れないよう余白を追加 */
  .s-footer {
    padding-bottom: calc(var(--space-5) + 72px + env(safe-area-inset-bottom));
  }
  a, button, [role="button"], label, select, input { cursor: auto; }
  .s-featured { padding-top: var(--space-8); }
  .s-solution  { padding-top: var(--space-8); }
  .c-testi-card.fade-up { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 500px) {
  .c-section-header__title { font-size: 44px !important; }
}

@media (max-width: 1024px) and (min-width: 481px) {
  html { zoom: 0.85; }
  .s-hero__content { right: 12%; }
}

@media (max-width: 375px) {
  .s-hero__content {
    left: 50% !important;
    right: auto !important;
    bottom: 6% !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    width: 72% !important;
    zoom: 0.82;
  }
}

@media (max-width: 480px) {
  .s-creator__item { font-size: 48px; }
}

@media (min-width: 1440px) {
  .s-hero__content { zoom: 1.15; }
  .s-hero__title { font-size: 25px; }
}
