/* ============================================================
   AIChatPlus Service Site — style.css
   信頼・清潔系（日本語LP向けタイポ最適化）
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --primary:      #10a37f;    /* OpenAI green */
  --primary-d:    #0d8f6e;
  --primary-l:    #1bc49a;
  --blue:         #2563eb;
  --indigo:       #6366f1;
  --text:         #202123;
  --text-sec:     #374151;
  --muted:        #6b7280;
  --bg:           #f7f7f8;
  --card:         #ffffff;
  --border:       #e5e7eb;
  --dark:         #111827;
  --darker:       #0d0d0d;
  --dark-card:    rgba(255,255,255,.05);
  --dark-border:  rgba(255,255,255,.08);
  --r:            12px;
  --r-sm:         8px;
  --r-lg:         20px;
  --shadow:       0 4px 24px rgba(0,0,0,.06);
  --shadow-lg:    0 16px 64px rgba(0,0,0,.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
               "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; }

/* ── Nav ── */
nav {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-mascot {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(16,163,127,.25));
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .nav-logo-img { height: 28px; }
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-plus { color: var(--primary); }
.nav-center { display: flex; gap: 28px; }
.nav-center a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-center a:hover { color: var(--text); }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-login {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-login:hover { color: var(--text); }
.btn-nav {
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, transform .1s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--primary-d); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 299;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text-sec);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── Buttons ── */
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-d); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(16,163,127,.35); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-dark {
  background: white;
  color: var(--text);
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: #f1f5f9; transform: translateY(-1px); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: .08s; }
.fade-in.d2 { transition-delay: .16s; }
.fade-in.d3 { transition-delay: .24s; }
.fade-in.d4 { transition-delay: .32s; }
.fade-in.d5 { transition-delay: .40s; }

/* ── Section commons ── */
section { padding: 96px 40px; }
.wrap { max-width: 1080px; margin: 0 auto; }
.sl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.sl.dark { color: #6ee7b7; }
.st {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sd {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}
.center { text-align: center; }
.center .sd { margin: 0 auto; }

/* ── HERO ── */
.hero {
  background: var(--darker);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,163,127,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  bottom: -80px; left: 10%;
}
.hero-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,163,127,.15);
  border: 1px solid rgba(16,163,127,.3);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .5px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--primary-l);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero h1 .c-green { color: #6ee7b7; }
.hero h1 .c-blue  { color: #93c5fd; }
.hero-sub {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* chat CTA button */
.chat-cta-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.chat-cta-btn:hover { background: #0d9068; }

/* Hero mascot */
.hero-visual { position: relative; }
.hero-mascot {
  width: 130px;
  position: absolute;
  top: -72px;
  right: -8px;
  z-index: 10;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.35));
  animation: mascotFloat 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-14px) rotate(4deg); }
}

/* Hero right: chat UI mockup */
.hero-ui {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  animation: floatUI 5s ease-in-out infinite;
}
@keyframes floatUI {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
.ui-header {
  background: #111124;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ui-dots { display: flex; gap: 6px; }
.ui-dots span { width: 10px; height: 10px; border-radius: 50%; }
.ui-dots span:nth-child(1) { background: #ff5f57; }
.ui-dots span:nth-child(2) { background: #febc2e; }
.ui-dots span:nth-child(3) { background: #28c840; }
.ui-title { font-size: 13px; font-weight: 600; color: #64748b; margin-left: auto; }
.ui-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; height: 300px; overflow-y: auto; scroll-behavior: smooth; }
.ui-msg {
  font-size: 13px;
  line-height: 1.6;
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 88%;
}
.ui-msg.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ui-msg.bot {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #cbd5e1;
  border-bottom-left-radius: 4px;
}
.ui-msg.bot strong { color: #6ee7b7; }
.ui-typing {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  padding: 12px 16px;
  border-radius: 12px 12px 12px 4px;
  display: flex; gap: 4px; align-items: center;
  max-width: 80px;
}
.ui-typing span {
  width: 6px; height: 6px;
  background: #64748b;
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.ui-typing span:nth-child(2) { animation-delay: .2s; }
.ui-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.ui-input {
  margin: 0 20px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.ui-input span { font-size: 13px; color: #475569; }
.ui-input .send-btn {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ── Stats ── */
.stats-bar {
  background: var(--dark);
  padding: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: #6ee7b7;
  letter-spacing: -2px;
  line-height: 1;
}
.stat-num span { font-size: 22px; }
.stat-label { font-size: 13px; color: #64748b; margin-top: 6px; font-weight: 500; }

/* ── Trust strip (under hero) ── */
.trust-strip {
  background: var(--darker);
  border-top: 1px solid rgba(110,231,183,.20);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 26px 40px 20px;
}
.trust-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 48px;
}
.trust-strip .ts-lead {
  font-size: 16px;
  color: #e2e8f0;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.trust-strip .ts-lead strong { color: #6ee7b7; font-weight: 800; }
.trust-strip .ts-lead-icon { margin-right: 6px; }
.ts-figs { display: flex; gap: 52px; align-items: center; }
.ts-fig {
  display: flex; flex-direction: column; align-items: center;
  font-size: 13px; color: #94a3b8; font-weight: 600; line-height: 1.5; text-align: center;
}
.ts-fig b { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -1.5px; }
.ts-fig b span { font-size: 16px; font-weight: 700; color: #6ee7b7; }
.trust-strip-note {
  max-width: 1080px; margin: 14px auto 0;
  text-align: center; font-size: 11px; color: #475569; line-height: 1.6;
}
@media (max-width: 768px) {
  .trust-strip { padding: 24px 16px 18px; }
  .ts-figs { gap: 20px; }
  .ts-fig { font-size: 11px; line-height: 1.4; }
  .ts-fig b { font-size: 30px; }
}

/* ── Client logos (Tag+) ── */
.clients { background: #fff; padding: 56px 0; border-bottom: 1px solid var(--border); }
.clients-lead { text-align: center; font-size: 23px; color: var(--text); font-weight: 800; margin: 0 0 40px; padding: 0 40px; letter-spacing: -.3px; }
.clients-lead strong { color: var(--primary); font-weight: 900; }
.clients-marquee {
  position: relative; overflow: hidden; width: 100%; margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.clients-track {
  display: flex; width: max-content; align-items: center; gap: 72px;
  animation: clients-scroll 50s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-track img {
  flex-shrink: 0;
  max-width: 195px; max-height: 83px; width: auto; height: auto;
  object-fit: contain; opacity: 1;
}
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; row-gap: 36px; }
}
.clients-note { text-align: center; font-size: 11px; color: var(--muted); margin: 30px auto 0; padding: 0 40px; line-height: 1.6; }
@media (max-width: 768px) {
  .clients { padding: 44px 0; }
  .clients-lead { font-size: 18px; padding: 0 20px; }
  .clients-note { padding: 0 20px; }
  .clients-track { gap: 48px; }
  .clients-track img { max-height: 62px; max-width: 150px; }
}

/* ── Concept ── */
.concept { background: white; }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.concept-point { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.bg-green  { background: #d1fae5; }
.bg-blue   { background: #dbeafe; }
.bg-orange { background: #ffedd5; }
.bg-indigo { background: #e0e7ff; }
/* ── Inline line icons (Lucide) ── */
.ic { width: 1em; height: 1em; vertical-align: -0.14em; flex-shrink: 0; }
.feat-hi-icon, .case-emoji, .sec-icon, .csi, .pi-icon { color: var(--primary); }
.shot-cap h4 .ic { color: var(--primary); }
.early-card .ec-icon { color: #6ee7b7; }
.ts-lead-icon { color: #6ee7b7; }
/* ── Line icons inside colored tiles ── */
.c-icon svg, .feat-icon svg, .feat-hi-icon svg { width: 22px; height: 22px; display: block; }
.feat-hi-icon svg { width: 30px; height: 30px; }
.c-icon.bg-green,  .feat-icon.bg-green  { color:#059669; }
.c-icon.bg-blue,   .feat-icon.bg-blue   { color:#2563eb; }
.c-icon.bg-orange, .feat-icon.bg-orange { color:#ea580c; }
.c-icon.bg-indigo, .feat-icon.bg-indigo { color:#6366f1; }
.concept-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.concept-point p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Chat mock */
.chat-mock {
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cm-header {
  background: #1f2937;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cm-dots { display: flex; gap: 6px; }
.cm-dots span { width: 10px; height: 10px; border-radius: 50%; }
.cm-dots span:nth-child(1) { background: #ff5f57; }
.cm-dots span:nth-child(2) { background: #febc2e; }
.cm-dots span:nth-child(3) { background: #28c840; }
.cm-name { font-size: 13px; font-weight: 600; color: #94a3b8; }
.cm-status { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 11px; color: #6ee7b7; font-weight: 600; }
.cm-status::before { content: ''; display: block; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.cm-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.cm-msg { font-size: 13px; line-height: 1.6; padding: 12px 16px; border-radius: 12px; max-width: 88%; }
.cm-msg.user { background: var(--primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.cm-msg.bot  { background: #1f2937; border: 1px solid rgba(255,255,255,.06); color: #cbd5e1; border-bottom-left-radius: 4px; }
.cm-typing   { background: #1f2937; border: 1px solid rgba(255,255,255,.06); padding: 12px 16px; border-radius: 12px 12px 12px 4px; display: flex; gap: 4px; align-items: center; max-width: 80px; }
.cm-typing span { width: 6px; height: 6px; background: #64748b; border-radius: 50%; animation: typingDot 1.2s infinite; }
.cm-typing span:nth-child(2) { animation-delay: .2s; }
.cm-typing span:nth-child(3) { animation-delay: .4s; }

/* ── Features ── */
.features { background: var(--bg); }
.feat-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px;
  border-bottom: 1.5px solid var(--border);
}
.feat-tab {
  padding: 10px 24px;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border: none; background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.feat-tab:hover { color: var(--primary); }
.feat-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.feat-panel { display: none; margin-top: 48px; }
.feat-panel.active { display: block; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #d1fae5; }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.feat-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.feat-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; margin-top: 12px;
}
.badge-new  { background: #d1fae5; color: #065f46; }
.badge-pro  { background: #e0e7ff; color: #4338ca; }

/* Feature split layout */
.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feat-split.rev { direction: rtl; }
.feat-split.rev > * { direction: ltr; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: var(--text-sec); }
.feat-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Layout preview cards */
.layout-section { background: white; }
.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.layout-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  cursor: default;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.layout-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(16,163,127,.12); }
.layout-preview {
  background: #111827;
  border-radius: 10px;
  height: 140px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.lp-popup {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
  box-shadow: 0 4px 16px rgba(16,163,127,.5);
}
.lp-panel {
  position: absolute;
  top: 8px; right: 8px; bottom: 8px;
  width: 120px;
  background: #1f2937;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
}
.lp-full {
  position: absolute;
  inset: 0;
  background: #1f2937;
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px;
}
.lp-bar { height: 8px; background: rgba(16,163,127,.4); border-radius: 4px; }
.lp-bar.w70 { width: 70%; }
.lp-bar.w50 { width: 50%; }
.lp-bar.w80 { width: 80%; background: rgba(255,255,255,.1); }
.layout-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.layout-card p  { font-size: 13px; color: var(--muted); }

/* ── AI Assistant ── */
.ai-assist { background: var(--darker); padding: 96px 40px; }
.ai-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-text .sl { color: #6ee7b7; }
.ai-text .st { color: white; }
.ai-text .sd { color: #94a3b8; }
.ai-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.ai-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #94a3b8; line-height: 1.6; }
.ai-points li .check { color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.ai-mock {
  background: #111124;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.ai-mock-header {
  background: #0d0d1a;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ai-mock-header .dots { display: flex; gap: 5px; }
.ai-mock-header .dots span { width: 10px; height: 10px; border-radius: 50%; }
.ai-mock-header .dots span:nth-child(1) { background: #ff5f57; }
.ai-mock-header .dots span:nth-child(2) { background: #febc2e; }
.ai-mock-header .dots span:nth-child(3) { background: #28c840; }
.ai-mock-header .title { font-size: 12px; font-weight: 600; color: #475569; margin-left: auto; }
.ai-mock-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.am-msg { font-size: 13px; line-height: 1.6; padding: 12px 16px; border-radius: 12px; }
.am-msg.u { background: rgba(16,163,127,.25); border: 1px solid rgba(16,163,127,.3); color: #a7f3d0; align-self: flex-end; max-width: 82%; border-bottom-right-radius: 4px; }
.am-msg.a { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #94a3b8; max-width: 90%; border-bottom-left-radius: 4px; }
.am-msg.a strong { color: #6ee7b7; }
.am-confirm { display: flex; gap: 8px; margin-top: 4px; }
.am-confirm button { font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 6px; border: none; cursor: pointer; }
.am-confirm .yes { background: var(--primary); color: white; }
.am-confirm .no  { background: rgba(255,255,255,.08); color: #94a3b8; }

/* ── Cases ── */
.cases { background: var(--bg); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #a7f3d0; }
.case-emoji { font-size: 36px; margin-bottom: 14px; display: block; }
.case-badge {
  display: inline-block;
  background: var(--bg); color: var(--muted);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  margin-bottom: 12px; letter-spacing: .5px;
  border: 1px solid var(--border);
}
.case-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.case-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.case-result {
  margin-top: 20px; padding: 12px 16px;
  background: #d1fae5; border-radius: 8px;
  font-size: 13px; color: #065f46; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}

/* ── How it works ── */
.howto { background: white; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 12.5%; right: 12.5%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(16,163,127,.4);
}
.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p   { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Security ── */
.security { background: var(--bg); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.security-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.security-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sec-icon { font-size: 28px; margin-bottom: 12px; }
.security-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.security-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Pricing ── */
.pricing { background: white; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: white;
  border: 2px solid var(--primary);
  box-shadow: 0 16px 64px rgba(16,163,127,.12);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.price-plan { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.price-amount {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.price-amount span { font-size: 18px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
hr.price-div { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.price-items { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-items li { display: flex; gap: 10px; font-size: 14px; color: var(--text-sec); align-items: flex-start; }
.price-items li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.price-items li.off { color: var(--muted); }
.price-items li.off::before { content: '–'; color: var(--border); }
.btn-price {
  display: block; text-align: center;
  padding: 13px 24px; border-radius: var(--r);
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
.btn-price.fill { background: var(--primary); color: white; }
.btn-price.fill:hover { background: var(--primary-d); transform: translateY(-1px); }
.btn-price.line { border: 1.5px solid var(--border); color: var(--text-sec); background: white; }
.btn-price.line:hover { border-color: var(--primary); color: var(--primary); }

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: #a7f3d0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-q .chevron {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
  transition: transform .3s;
  font-size: 11px;
  color: var(--primary);
  border: 1px solid var(--border);
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); background: #d1fae5; border-color: #a7f3d0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── CTA ── */
.cta-sec {
  background: var(--dark);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(16,163,127,.12) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-sec h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-sec p  { font-size: 16px; color: #64748b; margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { background: #0a0a0a; color: #64748b; padding: 64px 40px 32px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo-wrap {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.footer-brand .logo-mark { background: var(--primary); }
.footer-brand .logo-text { font-size: 20px; font-weight: 800; color: white; letter-spacing: -1px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #64748b; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: #64748b; text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── Inner page hero ── */
.page-hero {
  background: var(--darker);
  padding: 80px 40px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(16,163,127,.1) 0%, transparent 70%);
}
.page-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero .ph-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #6ee7b7; margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; color: white;
  letter-spacing: -2px; line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; color: #94a3b8; line-height: 1.8;
  max-width: 540px; margin: 0 auto;
}

/* ── Nav active ── */
.nav-center a.active { color: var(--primary); font-weight: 700; }

/* ── Feature highlights (TOP page) ── */
.feat-hi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feat-hi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat-hi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #a7f3d0; }
.feat-hi-icon { font-size: 32px; margin-bottom: 12px; }
.feat-hi-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feat-hi-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Pricing (pricing page) ── */
.price-note {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 14px;
  color: #065f46;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.cost-table-wrap { overflow-x: auto; margin-top: 32px; }
.cost-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.cost-table th {
  background: var(--dark);
  color: #94a3b8;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}
.cost-table th:first-child { border-radius: 10px 0 0 0; }
.cost-table th:last-child  { border-radius: 0 10px 0 0; }
.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-sec);
}
.cost-table tr:hover td { background: #f9fafb; }
.cost-table tr.highlight td { background: #f0fdf4; font-weight: 600; color: var(--text); }
.cost-table tr.highlight td:first-child { border-left: 3px solid var(--primary); }

/* ── Cases page ── */
.cases-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.how-steps-wrap {
  margin-top: 56px;
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .feat-hi-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 56px 20px 48px; }
}
@media (max-width: 600px) {
  .feat-hi-grid { grid-template-columns: 1fr; }
  .page-hero h1 { letter-spacing: -.8px; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-center, .nav-login { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 20px; }
  .ai-assist { padding: 64px 20px; }
  .cta-sec { padding: 72px 20px; }
  .stats-bar { padding: 32px 20px; }
  .hero { padding: 60px 20px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-ui { display: none; }
  .concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .feat-split { grid-template-columns: 1fr; gap: 40px; }
  .cases-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .layout-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .feat-split.rev { direction: ltr; }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -.8px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,.08) !important; }
  .stat-item:first-child { border-top: none !important; }
}

/* ============================================================
   Additions: screenshots / trust / early-access / legal /
   contact / comparison / company  (v1.1)
   ============================================================ */

/* ── Product screenshots showcase ── */
.shots { background: var(--bg); }
.browser-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.browser-bar {
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.browser-bar .bdots { display: flex; gap: 6px; }
.browser-bar .bdots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-bar .bdots span:nth-child(1) { background: #ff5f57; }
.browser-bar .bdots span:nth-child(2) { background: #febc2e; }
.browser-bar .bdots span:nth-child(3) { background: #28c840; }
.browser-bar .burl {
  margin-left: 10px; flex: 1;
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px;
  font-size: 12px; color: var(--muted);
  font-family: 'SF Mono','Fira Code',monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-frame img { width: 100%; display: block; }
.shot-featured { max-width: 960px; margin: 48px auto 0; }
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.shot-item { display: flex; flex-direction: column; }
.shot-item .browser-frame { box-shadow: var(--shadow); }
.shot-cap { margin-top: 14px; }
.shot-cap h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.shot-cap p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Trust bar (operating company credibility) ── */
.trust { background: white; }
.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.trust-card .t-lead h3 { font-size: 22px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 12px; }
.trust-card .t-lead p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.trust-card .t-lead .t-company { color: var(--primary); font-weight: 700; }
.trust-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-stat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px; text-align: center;
}
.trust-stat .ts-num { font-size: 26px; font-weight: 900; color: var(--primary); letter-spacing: -1px; line-height: 1; }
.trust-stat .ts-num span { font-size: 14px; }
.trust-stat .ts-label { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ── Early access / partner recruitment ── */
.early { background: var(--darker); position: relative; overflow: hidden; }
.early::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(16,163,127,.14) 0%, transparent 70%);
}
.early-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.early .sl { color: #6ee7b7; }
.early .st { color: white; }
.early .sd { color: #94a3b8; }
.early-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.early-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .2s, border-color .2s, background .2s;
}
.early-card:hover { transform: translateY(-4px); border-color: rgba(16,163,127,.5); background: rgba(255,255,255,.06); }
.early-card .ec-icon { font-size: 30px; margin-bottom: 14px; }
.early-card h4 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 10px; }
.early-card p { font-size: 14px; color: #94a3b8; line-height: 1.7; }
.early-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,163,127,.15); border: 1px solid rgba(16,163,127,.35);
  color: #6ee7b7; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; letter-spacing: .5px;
}
.early-badge .dot { width: 6px; height: 6px; background: var(--primary-l); border-radius: 50%; animation: blink 2s infinite; }
.early-cta { text-align: center; margin-top: 44px; }
.early-note { font-size: 13px; color: #64748b; margin-top: 14px; }

/* disclaimer note for projected figures */
.proj-note {
  max-width: 720px; margin: 24px auto 0;
  font-size: 12px; color: var(--muted);
  text-align: center; line-height: 1.7;
}

/* ── Comparison table ── */
.compare { background: white; }
.cmp-table-wrap { overflow-x: auto; margin-top: 48px; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 680px; }
.cmp-table th, .cmp-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.cmp-table thead th { background: var(--dark); color: #94a3b8; font-weight: 600; white-space: nowrap; }
.cmp-table thead th.col-csplus { background: var(--primary); color: white; }
.cmp-table th:first-child { border-radius: 10px 0 0 0; }
.cmp-table th:last-child { border-radius: 0 10px 0 0; }
.cmp-table td.col-csplus { background: #f0fdf4; font-weight: 700; color: var(--text); border-left: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.cmp-table tbody tr:last-child td.col-csplus { border-bottom: 2px solid var(--primary); }
.cmp-table td .yes { color: var(--primary); font-weight: 800; }
.cmp-table td .no { color: #cbd5e1; }
.cmp-table td:first-child { font-weight: 600; color: var(--text-sec); }

/* ── Legal / company static pages ── */
.legal { background: white; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 20px; font-weight: 800; margin: 40px 0 14px; letter-spacing: -.5px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.legal-body p { font-size: 14.5px; color: var(--text-sec); line-height: 1.9; margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 1.4em; }
.legal-body li { font-size: 14.5px; color: var(--text-sec); line-height: 1.9; margin-bottom: 6px; }
.legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.legal-body a:not([class]) { color: var(--primary); text-decoration: underline; }

/* info table (会社概要 / 特商法) */
.info-table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-top: 8px; }
.info-table th {
  text-align: left; vertical-align: top;
  width: 30%; padding: 16px; background: var(--bg);
  font-weight: 700; color: var(--text-sec);
  border: 1px solid var(--border); white-space: nowrap;
}
.info-table td { padding: 16px; border: 1px solid var(--border); color: var(--text-sec); line-height: 1.8; }
@media (max-width: 600px) {
  .info-table th { width: 38%; white-space: normal; }
}

/* ── Contact (Google Form embed) ── */
.contact { background: var(--bg); }
.contact-wrap { max-width: 760px; margin: 48px auto 0; }
.contact-embed {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow);
}
.contact-embed iframe { width: 100%; min-height: 1180px; border: none; display: block; border-radius: 8px; }
.contact-fallback {
  margin-top: 20px; text-align: center; font-size: 14px; color: var(--muted);
}
.contact-side { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 auto 40px; max-width: 760px; }
.contact-side .cs-card { background: white; border: 1px solid var(--border); border-radius: var(--r); padding: 20px; text-align: center; }
.contact-side .cs-card .csi { font-size: 26px; margin-bottom: 8px; }
.contact-side .cs-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-side .cs-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .shots-grid { grid-template-columns: 1fr; }
  .trust-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .early-grid { grid-template-columns: 1fr; }
  .contact-side { grid-template-columns: 1fr; }
}

/* ── Hero presenter (紹介女優) ── */
.hero-grid.with-presenter {
  grid-template-columns: 1.05fr 0.92fr 0.74fr;
  max-width: 1260px;
  gap: 40px;
}
.hero-presenter {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pres-glow {
  position: absolute;
  inset: auto 0 -6% 0;
  height: 86%;
  background: radial-gradient(ellipse 70% 62% at 52% 72%, rgba(16,163,127,.26) 0%, transparent 70%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}
.pres-img-wrap { position: relative; z-index: 1; width: 100%; max-width: 340px; }
.hero-presenter img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  object-fit: cover;
}
.pres-badge {
  position: absolute;
  top: 22px; left: -18px;
  z-index: 2;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 14px 36px rgba(0,0,0,.32);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floatUI 5s ease-in-out infinite;
}
.pres-badge .pb-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(16,163,127,.2);
  flex-shrink: 0;
}
.pres-badge small { display: block; color: var(--muted); font-weight: 500; font-size: 11px; }
.pres-badge2 {
  position: absolute;
  bottom: 26px; right: -14px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(16,163,127,.4);
  animation: floatUI 5.6s ease-in-out infinite;
}

@media (max-width: 1120px) {
  .hero-grid.with-presenter { grid-template-columns: 1fr 1fr; max-width: 1080px; }
  .hero-presenter { display: none; }
}

/* ── Hero presenter: cutout(透過立ち姿)用オーバーライド ── */
.hero-presenter { align-items: flex-end; }
.hero-grid.with-presenter { align-items: stretch; }
.pres-img-wrap { max-width: 400px; display: flex; align-items: flex-end; justify-content: center; }
.hero-presenter img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,.5));
  object-fit: contain;
  max-height: 600px;
}
.pres-glow { inset: auto 0 0 0; height: 64%; }
.pres-badge { top: 54px; left: -4px; }
.pres-badge2 { bottom: 96px; right: -4px; }

/* ============================================================
   Hero を明るい背景に（ライトテーマ・紹介女優差し替え対応）
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 75% 55% at 72% 18%, #e6fbf1 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f2faf6 100%);
}
.hero-noise { display: none; }
.hero-glow-1 { background: radial-gradient(circle, rgba(16,163,127,.12) 0%, transparent 70%); }
.hero-glow-2 { display: none; }

.hero h1 { color: var(--text); }
.hero h1 .c-green { color: var(--primary); }
.hero h1 .c-blue  { color: var(--blue); }
.hero-sub { color: var(--text-sec); }
.hero-badge {
  background: #fff;
  border: 1px solid #c7f0e0;
  color: var(--primary-d);
  box-shadow: 0 4px 16px rgba(16,163,127,.12);
}
/* ライト背景では btn-ghost(白文字)が見えないので差し替え */
.hero .btn-ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-sec);
}
.hero .btn-ghost:hover { background: #f1f5f9; }

/* presenter（ライト背景向け調整） */
.pres-glow {
  background: radial-gradient(ellipse 70% 58% at 50% 76%, rgba(16,163,127,.18) 0%, transparent 70%);
}
.hero-presenter img {
  filter: drop-shadow(0 22px 34px rgba(16,40,30,.22));
}
.pres-badge {
  border: 1px solid var(--border);
  top: 10px; left: 60px;
}
.pres-badge2 {
  bottom: 120px; right: -10px;
}

/* ── presenter を大きく＋バッジ削除に伴う調整 ── */
.hero-grid.with-presenter {
  grid-template-columns: 1fr 0.72fr 1.1fr;
  max-width: 1340px;
  gap: 32px;
}
.pres-img-wrap { max-width: 520px; }
.hero-presenter img { max-height: 760px; }
.pres-glow { inset: auto 0 -2% 0; height: 58%; }

/* ── presenter さらに拡大（v2） ── */
.hero-grid.with-presenter {
  grid-template-columns: 0.9fr 0.72fr 1.3fr;
  max-width: 1400px;
  gap: 28px;
}
.pres-img-wrap { max-width: 640px; }
.hero-presenter img { max-height: 840px; }

/* ── レスポンシブ修正（with-presenter は最後に上書きして確実に効かせる）── */
@media (max-width: 1120px) {
  .hero-grid.with-presenter {
    grid-template-columns: 1fr 1fr;
    max-width: 1080px;
    gap: 40px;
  }
  .hero-presenter { display: none; }
}
@media (max-width: 900px) {
  .hero-grid.with-presenter { grid-template-columns: 1fr; gap: 40px; }
}

/* trust-stats: スマホで4列→2列（company等のインライン4列指定を上書き）*/
@media (max-width: 700px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============================================================
   JP TUNING — 信頼・清潔系（和文タイポ最適化）
   欧文ディスプレイ調の「詰めすぎ字間」を解除し、和文を読みやすく。
   palt（プロポーショナル詰め）で和文の余白を自然に整える。
   ※英語アイブロウ(.sl/.price-plan等)は positive tracking のまま維持。
   ============================================================ */
body {
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
/* 和文の見出し・本文：詰めすぎ解除（normal）＋palt */
h1, h2, h3, h4, h5, p, li, td, th, a, span,
.hero h1, .page-hero h1, .st, .sd, .clients-lead, .cta-sec h2,
.concept-point h4, .feat-hi-card h4, .case-card h3, .shot-cap h4,
.trust-card .t-lead h3, .ts-label, .stat-label, .legal-body h2,
.price-desc, .price-items li, .faq-q, .faq-a-inner, .nav-logo {
  letter-spacing: normal;
}
/* 大きな見出しだけ、わずかに引き締め（和文でも自然な範囲） */
.hero h1, .page-hero h1, .st, .cta-sec h2 {
  letter-spacing: -0.01em;
  line-height: 1.45;
}
/* 大きな数字（67% / 340% など）は視認性重視で軽い詰めのみ */
.stat-num, .price-amount, .ts-fig b, .trust-stat .ts-num {
  letter-spacing: -0.01em;
}
