/* site.css — page-level layout helpers shared across pages
   (extracted from design-system ds-page-home + footer logo) */

* { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: var(--font-jp); background: var(--neutral-50); color: var(--text-primary); }

/* ── Sections ── */
.section { padding: var(--space-20) 0; }
.section-alt { background: white; }
.container { max-width: var(--container-xl); margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--space-6); }

/* ── Trust strip ── */
.trust-strip { background: white; border-bottom: 1px solid var(--border-subtle); padding: var(--space-5) 0; }
.trust-inner { max-width: var(--container-xl); margin: 0 auto; padding: 0 var(--space-6); display: flex; gap: var(--space-10); align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: var(--space-2); font-size: var(--fs-body-sm); color: var(--text-secondary); font-weight: 600; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-orange); flex-shrink: 0; }

/* ── Grids ── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); position: relative; }
.step-card { background: white; border-radius: var(--radius-lg); padding: var(--space-6); border: 1px solid var(--border-default); position: relative; }
.step-num { font-size: 48px; font-weight: 800; color: var(--orange-100); line-height: 1; margin-bottom: var(--space-3); font-family: var(--font-display); }
.step-title { font-size: var(--fs-body); font-weight: 700; margin-bottom: var(--space-2); }
.step-desc { font-size: var(--fs-body-sm); color: var(--text-secondary); line-height: 1.7; }
.step-arrow { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); z-index: 1; color: var(--border-default); font-size: 20px; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.stat-item { text-align: center; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--brand-orange); line-height: 1; font-family: var(--font-display); }
.stat-unit { font-size: var(--fs-title); font-weight: 700; color: var(--brand-orange); }
.stat-label { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.75); margin-top: var(--space-2); }

/* ── Footer brand logo text ── */
.logo-text {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  background: linear-gradient(135deg, #F1CF29 0%, #F7941D 40%, #F15A29 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}

/* page-hero / article / breadcrumb → moved to design-system components.css
   (hs-page-hero, hs-article, hs-page-hero__breadcrumb) */

/* ── Header actions (lang switch + CTA) ── */
.hs-header__actions { display: flex; align-items: center; gap: var(--space-4); }
.hs-lang-switch {
  font-size: var(--fs-body-sm); font-weight: 700; color: var(--text-secondary);
  text-decoration: none; padding: 4px 8px; border: 1px solid var(--border-default);
  border-radius: var(--radius-sm); transition: color .15s, border-color .15s;
}
.hs-lang-switch:hover { color: var(--brand-orange); border-color: var(--brand-orange); }

/* ── Founder story prose ── */
.founder-story p { font-size: var(--fs-title); line-height: 2; color: var(--text-secondary); margin: 0 0 var(--space-5); }
.founder-story p:last-child { color: var(--text-primary); font-weight: 700; }

/* ── Venture card ── */
.venture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.venture-card {
  background: white; border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3);
}
.venture-card__name { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 800; color: var(--brand-navy); }
.venture-card__desc { color: var(--text-secondary); line-height: 1.8; flex: 1; }

/* ── Futurelastic band ── */
.future-band { background: linear-gradient(135deg, var(--brand-navy) 0%, #0d1147 100%); color: #fff; padding: var(--space-20) 0; text-align: center; }
.future-band__badge { display:inline-block; font-size: var(--fs-body-sm); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--brand-orange); border:1px solid rgba(242,100,39,.4); border-radius:999px; padding:4px 14px; margin-bottom: var(--space-5); }
.future-band__name { font-family: var(--font-display); font-size: var(--fs-display); font-weight:800; margin:0; }
.future-band__desc { font-size: var(--fs-title); color: rgba(255,255,255,.8); margin-top: var(--space-4); }

@media (max-width: 768px) {
  .service-grid, .feature-grid, .steps-grid, .stats-grid, .news-grid, .venture-grid, .support-grid { grid-template-columns: 1fr !important; }
  .step-arrow { display: none; }
  .trust-inner { gap: var(--space-4); }
  .hs-header__actions { display: none; }
}
