/* ============================================
   NOVUM - Stylesheet
   コーポレート + 採用ページ共通
   ============================================ */

/* ===== Design Tokens ===== */
:root {
  /* Dark mode (default) */
  --bg-base: #0A0E14;
  --bg-surface-1: #11161F;
  --bg-surface-2: #1A2230;
  --bg-elevated: #232B3A;
  --accent-1: #00FF88;
  --accent-1-dim: rgba(0, 255, 136, 0.15);
  --accent-2: #00D4FF;
  --text-1: #E8ECF1;
  --text-2: #9BA3AF;
  --text-3: #6B7280;
  --divider: #252B36;
  --error: #FF4757;
  --success: #00FF88;

  /* Fonts */
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-sans: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --section-py-desktop: 120px;
  --section-py-mobile: 64px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 400ms var(--ease-out);
  --transition-slow: 800ms var(--ease-out);
}

[data-theme="light"] {
  --bg-base: #F8FAFC;
  --bg-surface-1: #FFFFFF;
  --bg-surface-2: #F1F5F9;
  --bg-elevated: #E2E8F0;
  --accent-1: #00C26B;
  --accent-1-dim: rgba(0, 194, 107, 0.12);
  --accent-2: #0099CC;
  --text-1: #0A0E14;
  --text-2: #475569;
  --text-3: #94A3B8;
  --divider: #E2E8F0;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--transition-base), color var(--transition-base);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Selection */
::selection { background: var(--accent-1); color: var(--bg-base); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-jp);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.font-mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

/* ===== Layout ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py-desktop) 0;
  position: relative;
}
.section--alt { background: var(--bg-surface-1); }
.section--dark { background: var(--bg-base); }

@media (max-width: 767px) {
  .section { padding: var(--section-py-mobile) 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-1);
  color: var(--bg-base);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-1-dim);
}
.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--divider);
}
.btn-secondary:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}
.btn-large { padding: 20px 36px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-base);
}
[data-theme="light"] .header {
  background: rgba(248, 250, 252, 0.85);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text-1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.logo::before {
  content: '>';
  color: var(--accent-1);
  font-weight: 700;
}
.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav a {
  color: var(--text-2);
  transition: color var(--transition-fast);
  position: relative;
}
.nav a:hover { color: var(--text-1); }
.nav a.active {
  color: var(--accent-1);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-1);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--transition-fast);
}
.theme-toggle:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  transition: all var(--transition-fast);
  margin: 0 auto;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav,
  .header__actions .btn {
    display: none;
  }
  .hamburger { display: flex; }

  .nav.open {
    display: flex;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--bg-base);
    flex-direction: column;
    padding: 32px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    font-size: 16px;
  }
  .nav.open a { padding: 12px 0; }

  .header__actions .btn.btn--mobile-show {
    display: inline-flex;
  }
}

/* Spacer for fixed header */
main { padding-top: 73px; }

/* ===== Hero ===== */
.hero {
  min-height: calc(92vh - 73px);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.06) 0%, transparent 50%), var(--bg-base);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.terminal-line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-1);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.terminal-line .typed { display: inline-block; }
.terminal-line::after {
  content: '_';
  animation: blink 1s infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }
.terminal-block {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-1);
  margin-bottom: 32px;
  background: rgba(0, 255, 136, 0.05);
  border-left: 2px solid var(--accent-1);
  padding: 16px 20px;
  border-radius: 4px;
}
.terminal-block .line { margin-bottom: 4px; }
.terminal-block .line:last-child { margin-bottom: 0; }
.terminal-block .status::after {
  content: '_';
  animation: blink 1s infinite;
}
.hero__title {
  font-family: var(--font-jp);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.85;
  max-width: 560px;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}
.trust-badges > div strong {
  color: var(--accent-1);
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}
.hiring-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}
.hiring-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== Section Headers ===== */
.section-head {
  margin-bottom: 56px;
  max-width: 800px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--font-jp);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.85;
}

/* ===== Metrics ===== */
.metrics {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  margin: 0 -24px;
}
.metric {
  background: var(--bg-surface-1);
  padding: 80px 32px;
  text-align: center;
}
.metric__num {
  font-family: var(--font-mono);
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 700;
  color: var(--accent-1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.metric__num small {
  font-size: 0.4em;
  color: var(--text-2);
  margin-left: 4px;
}
.metric__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.metric__desc {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 8px;
}

/* ===== Problem ===== */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem__stat {
  font-family: var(--font-mono);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  letter-spacing: -0.04em;
}
.problem__stat .pct { color: var(--accent-1); }
.problem__caption {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  margin-top: 16px;
}
.problem__text h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}
.problem__text p {
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.85;
}
.problem__text strong {
  color: var(--accent-1);
  font-weight: 700;
}

/* ===== Bento Grid (Services) ===== */
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.bento-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: default;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
  transition: all var(--transition-base);
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.bento-card:hover::before { opacity: 0.32; }
.bento-card > * { position: relative; z-index: 1; }
.bento-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}
.bento-card h3 {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.bento-card p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
}
.bento-1 { grid-row: 1 / 3; }
.bento-5 { grid-column: span 2; }

/* ===== Simulator ===== */
.sim {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--divider);
  border-radius: 12px;
  background: var(--bg-surface-1);
  overflow: hidden;
}
.sim__input {
  padding: 40px;
  border-right: 1px solid var(--divider);
}
.sim__input label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 12px;
}
.sim__input label:first-of-type { margin-top: 0; }
.sim__input select,
.sim__input input[type="range"] {
  width: 100%;
  background: var(--bg-surface-2);
  color: var(--text-1);
  border: 1px solid var(--divider);
  padding: 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 14px;
  transition: all var(--transition-fast);
}
.sim__input select:focus,
.sim__input input:focus {
  outline: none;
  border-color: var(--accent-1);
}
.sim__input input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  background: var(--bg-surface-2);
  padding: 0;
  cursor: pointer;
}
.sim__input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-1);
}
.sim__input input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--accent-1);
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 12px var(--accent-1);
}
.sim__budget {
  font-family: var(--font-mono);
  color: var(--accent-1);
  font-size: 16px;
  margin-top: 8px;
  font-weight: 600;
}
.sim__result {
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface-1));
}
.sim__roi {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-1);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 12px 0 32px;
}
.sim__roi small {
  font-size: 22px;
  color: var(--text-2);
  margin-left: 8px;
  font-weight: 400;
}
.sim__rec {
  background: var(--bg-base);
  border-left: 2px solid var(--accent-1);
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 13px;
  border-radius: 0 4px 4px 0;
}
.sim__rec small {
  font-family: var(--font-mono);
  color: var(--accent-1);
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}
.sim__monthly {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}
.sim__monthly-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sim__monthly-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-1);
  margin: 8px 0;
}
.sim__monthly-num small {
  font-size: 13px;
  color: var(--text-2);
  margin-left: 4px;
  font-weight: 400;
}

/* ===== Process ===== */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-step {
  background: var(--bg-surface-2);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: all var(--transition-base);
}
.process-step:hover {
  border-color: var(--accent-1);
  transform: translateY(-2px);
}
.process-step--featured {
  border-color: var(--accent-1);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), var(--bg-surface-2));
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: block;
}
.process-step h3 {
  font-family: var(--font-mono);
  font-size: 18px;
  margin-bottom: 8px;
}
.process-step__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 12px;
}
.process-step p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
}

/* ===== Cases ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-base);
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
}
.case-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.case-card__body { padding: 24px; }
.case-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: block;
}
.case-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.case-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}
.case-card__results {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.case-card__results > div {
  flex: 1;
}
.case-card__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-1);
  display: block;
}
.case-card__lab {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 4px;
  display: block;
}

/* ===== Tech Stack ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.tech-cat {
  font-family: var(--font-mono);
  color: var(--accent-1);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  grid-column: 1 / -1;
}
.tech-cat:first-child { margin-top: 0; }
.tech-badge {
  background: var(--bg-surface-2);
  border: 1px solid var(--divider);
  padding: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  border-radius: 4px;
  transition: all var(--transition-fast);
}
.tech-badge:hover {
  border-color: var(--accent-1);
  color: var(--text-1);
}

/* ===== Subsidy ===== */
.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.subsidy-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-top: 2px solid var(--accent-1);
  border-radius: 8px;
  padding: 32px;
  transition: all var(--transition-base);
}
.subsidy-card:hover { transform: translateY(-2px); }
.subsidy-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.subsidy-card__max {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-1);
  margin: 12px 0;
}
.subsidy-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}
.subsidy-card__stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.subsidy-card__stats strong {
  font-family: var(--font-mono);
  color: var(--accent-1);
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}
.subsidy-card__stats small { color: var(--text-2); font-size: 11px; }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: left;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}
.team-card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}
.team-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.team-card p {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border: 2px solid var(--accent-1);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), var(--bg-surface-1));
  position: relative;
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-1);
  color: var(--bg-base);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pricing-card__name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent-1);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-card__price small {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 400;
}
.pricing-card__desc {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  gap: 8px;
}
.pricing-card__features li::before {
  content: '>';
  color: var(--accent-1);
  font-family: var(--font-mono);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-1);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::before {
  content: 'Q.';
  color: var(--accent-1);
  margin-right: 6px;
  flex-shrink: 0;
}
.faq-q__text { flex: 1; }
.faq-q__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  color: var(--accent-1);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a__inner {
  padding: 0 0 24px 32px;
}

/* ===== Company ===== */
.company-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.company-table tr {
  border-bottom: 1px solid var(--divider);
}
.company-table th, .company-table td {
  padding: 18px 12px;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}
.company-table th {
  width: 200px;
  color: var(--accent-1);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.company-table td { color: var(--text-2); }

.map-wrap {
  margin-top: 48px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
  filter: grayscale(0.8) invert(0.92) hue-rotate(180deg);
}
[data-theme="light"] .map-wrap {
  filter: none;
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ===== Contact CV ===== */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.cv-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
}
.cv-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
}
.cv-card--primary {
  border-color: var(--accent-1);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), var(--bg-surface-2));
}
.cv-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-1-dim);
  color: var(--accent-1);
  border-radius: 50%;
  font-size: 20px;
}
.cv-card h4 {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.cv-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== Form ===== */
.form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-base);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface-2);
  color: var(--text-1);
  border: 1px solid var(--divider);
  padding: 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px var(--accent-1-dim);
}
.form-group input:user-invalid,
.form-group select:user-invalid,
.form-group textarea:user-invalid {
  border-color: var(--error);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-1);
  cursor: pointer;
}
.form-check a { color: var(--accent-1); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 60px;
  height: 60px;
  background: var(--accent-1-dim);
  color: var(--accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-base);
  padding: 64px 0 32px;
  border-top: 1px solid var(--divider);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}
.footer__brand p {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 16px;
  line-height: 1.7;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer ul li {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.footer ul li a:hover { color: var(--accent-1); }
.footer__bottom {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 32px;
  letter-spacing: 0.05em;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.floating-cta__primary {
  background: var(--accent-1);
  color: var(--bg-base);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: JSが動かない or visible判定が遅れた時の保険(2秒後に強制表示) */
.no-js .reveal,
html.reveal-fallback .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-1 { grid-row: auto; grid-column: 1 / -1; }
  .bento-5 { grid-column: 1 / -1; }

  .sim { grid-template-columns: 1fr; }
  .sim__input { border-right: none; border-bottom: 1px solid var(--divider); }

  .case-grid,
  .process-list,
  .subsidy-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .cv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .container { padding: 0 16px; }
  .metrics__grid { grid-template-columns: 1fr; margin: 0; }
  .metric { padding: 48px 24px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-1 { grid-row: auto; grid-column: auto; }
  .bento-5 { grid-column: auto; }
  .case-grid,
  .process-list,
  .subsidy-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form { padding: 24px; }
  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
  .floating-cta a {
    padding: 12px 16px;
    font-size: 12px;
  }
  .hero { min-height: auto; padding: 60px 0; }
  .hero__bg { width: 100%; opacity: 0.18; }
  .trust-badges { gap: 16px; }
  .trust-badges > div strong { font-size: 18px; }

  .header__inner { gap: 12px; }
  .nav.open { gap: 8px; padding: 24px 16px; }
  .terminal-block { font-size: 11px; padding: 12px 14px; }
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }
  .map-wrap iframe { height: 280px; }
  .sim__roi { font-size: 44px; }

  .company-table th { width: 130px; padding: 14px 8px; font-size: 11px; }
  .company-table td { padding: 14px 8px; font-size: 13px; }
}

/* ============================================
   RECRUIT PAGE SPECIFIC STYLES
   ============================================ */

/* MVV */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 40px 32px;
}
.mvv-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 16px;
}
.mvv-card h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.mvv-card__quote {
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.mvv-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.85;
}

/* What We Do */
.what-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.what-item {
  border-left: 2px solid var(--accent-1);
  padding-left: 24px;
}
.what-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}
.what-item h3 {
  font-family: var(--font-jp);
  font-size: 22px;
  margin-bottom: 16px;
}
.what-item p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.85;
}

/* Culture */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.culture-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 32px;
  transition: all var(--transition-base);
}
.culture-card:hover {
  border-color: var(--accent-1);
  transform: translateY(-2px);
}
.culture-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
}
.culture-card h3 {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.culture-card p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
}

/* Jobs Tabs */
.jobs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}
.jobs-tab {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  background: transparent;
  padding: 16px 24px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition-fast);
}
.jobs-tab:hover { color: var(--text-1); }
.jobs-tab.active {
  color: var(--accent-1);
  border-bottom-color: var(--accent-1);
}
.job-card {
  display: none;
  background: var(--bg-surface-2);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 40px;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.job-card.active { display: grid; }
.job-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.job-card__title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.job-card__salary {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--accent-1);
  font-weight: 700;
  margin-bottom: 24px;
}
.job-card__salary small {
  font-size: 12px;
  color: var(--text-2);
  display: block;
  margin-top: 4px;
  font-weight: 400;
}
.job-card__detail h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  margin-top: 24px;
  text-transform: uppercase;
}
.job-card__detail h4:first-child { margin-top: 0; }
.job-card__detail ul li {
  color: var(--text-2);
  font-size: 14px;
  padding: 6px 0;
  line-height: 1.7;
  display: flex;
  gap: 8px;
}
.job-card__detail ul li::before {
  content: '>';
  color: var(--accent-1);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* Interview */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.interview-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  transition: all var(--transition-base);
}
.interview-card:hover { border-color: var(--accent-1); }
.interview-card img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.interview-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.interview-card h4 {
  font-size: 18px;
  margin-bottom: 16px;
}
.interview-card__quote {
  font-family: var(--font-jp);
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
  border-left: 2px solid var(--accent-1);
  padding-left: 16px;
}
.interview-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.05em;
}

/* A Day */
.day-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.day-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--divider);
}
.day-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}
.day-item::before {
  content: '';
  position: absolute;
  left: 76px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-1);
  z-index: 1;
}
.day-time {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-1);
  font-weight: 600;
  text-align: right;
}
.day-content h4 { font-size: 16px; margin-bottom: 4px; }
.day-content p {
  font-family: var(--font-mono);
  color: var(--text-2);
  font-size: 12px;
}
.day-meta {
  text-align: center;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 24px;
}

/* Workplace */
.workplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.workplace-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
}
.workplace-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.workplace-card__body { padding: 24px; }
.workplace-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}
.workplace-card h4 { font-size: 16px; margin-bottom: 8px; }
.workplace-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}
.offsite-banner {
  text-align: center;
  margin-top: 32px;
}
.offsite-banner img {
  width: 100%;
  max-width: 880px;
  border-radius: 12px;
  margin: 0 auto;
  opacity: 0.85;
}
.offsite-banner p {
  font-family: var(--font-mono);
  color: var(--text-2);
  font-size: 13px;
  margin-top: 16px;
}

/* Benefits */
.benefits-section { margin-top: 40px; }
.benefits-section h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-1);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 12px;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-item {
  background: var(--bg-surface-2);
  border-left: 2px solid var(--accent-1);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
}
.benefit-item h4 { font-size: 15px; margin-bottom: 6px; }
.benefit-item p { font-size: 13px; color: var(--text-2); }
.salary-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  background: var(--bg-surface-2);
  border-radius: 4px;
  overflow: hidden;
}
.salary-table th, .salary-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
}
.salary-table th {
  font-family: var(--font-mono);
  color: var(--accent-1);
  font-size: 11px;
  letter-spacing: 0.12em;
  background: var(--bg-base);
}
.salary-table td.amount {
  font-family: var(--font-mono);
  color: var(--accent-1);
  font-weight: 600;
}
.salary-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* Entry */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.entry-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.entry-card--primary {
  border: 2px solid var(--accent-1);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), var(--bg-surface-1));
}
.entry-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.entry-card h3 {
  font-family: var(--font-jp);
  font-size: 28px;
  margin-bottom: 16px;
}
.entry-card__desc {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.85;
}
.entry-card ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.entry-card ul li {
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 0;
  display: flex;
  gap: 8px;
}
.entry-card ul li::before {
  content: '>';
  color: var(--accent-1);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ===== Recruit Responsive ===== */
@media (max-width: 1023px) {
  .mvv-grid,
  .what-list,
  .culture-grid,
  .interview-grid,
  .workplace-grid,
  .entry-grid {
    grid-template-columns: 1fr;
  }
  .job-card { grid-template-columns: 1fr; gap: 24px; }
  .interview-card { grid-template-columns: 140px 1fr; gap: 20px; }
  .interview-card img { width: 140px; }
}
@media (max-width: 767px) {
  .interview-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .interview-card img {
    width: 140px;
    margin: 0 auto;
  }
  .interview-card__quote { text-align: left; }
  .day-timeline::before { left: 50px; }
  .day-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .day-item::before { left: 47px; }
  .benefits-list { grid-template-columns: 1fr; }
  .entry-card { padding: 32px 24px; }
  .salary-table th,
  .salary-table td {
    padding: 12px 8px;
    font-size: 12px;
  }
}

/* ===== Privacy / Tokushoho pages ===== */
.legal-page {
  padding: 80px 0;
  max-width: 880px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--font-mono);
  font-size: 28px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}
.legal-page h2 {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent-1);
  margin: 40px 0 16px;
}
.legal-page p,
.legal-page li {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 12px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.legal-page table th,
.legal-page table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
  vertical-align: top;
}
.legal-page table th {
  width: 200px;
  color: var(--accent-1);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--accent-1); }
.breadcrumb a:hover { text-decoration: underline; }
