

:root {
  --c-bg:       #FFFFFF;
  --c-fg:       #0A0A0A;
  --c-muted:    #6B7280;
  --c-accent:   #00D97E;
  --c-surface:  #F4F4F5;
  --c-dark:     #0A0A0A;
  --c-dark-fg:  #FFFFFF;
  --c-border:   #E4E4E7;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:   clamp(0.75rem, 1vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(1rem, 1.4vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1.8vw, 1.375rem);
  --text-xl:   clamp(1.375rem, 2.5vw, 1.875rem);
  --text-2xl:  clamp(1.875rem, 3.5vw, 2.75rem);
  --text-3xl:  clamp(2.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-fg);
  line-height: 1.6;
  font-size: var(--text-base);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: clip;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-2) 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: var(--space-1); }
.brand-logo { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name { font-size: var(--text-lg); font-weight: 800; letter-spacing: -0.02em; color: var(--c-fg); }
.header-back {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-back:hover { color: var(--c-fg); }

.page-band {
  background: var(--c-dark);
  color: var(--c-dark-fg);
  padding: var(--space-5) 0;
  text-align: center;
}
.page-band .page-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}
.page-band h1 {
  font-size: var(--text-2xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.page-band p {
  font-size: var(--text-sm);
  color: #6B7280;
}

.page-content { padding: var(--space-5) 0; }

.about-blocks { display: flex; flex-direction: column; gap: var(--space-5); }
.about-block { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-4); align-items: start; }
.about-block-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-top: 0.3rem;
}
.about-block h2 {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}
.about-block p {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.7;
}
.about-block p + p { margin-top: var(--space-2); }

.legal-content { padding: var(--space-5) 0; }
.legal-content h2 {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--c-border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-4);
  margin-bottom: var(--space-2);
}
.legal-content ul li {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.empty-notice {
  text-align: center;
  padding: var(--space-6) 0;
  color: var(--c-muted);
  font-size: var(--text-sm);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.team-member {
  text-align: center;
}
.team-photo {
  width: 100%;
  height: 240px;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}
.team-member p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.value-card {
  padding: var(--space-3);
  background: var(--c-surface);
  border-radius: var(--radius-md);
  text-align: center;
}
.value-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--c-fg);
}
.value-card p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: var(--space-4) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-4);
}
.timeline-item:nth-child(odd) {
  direction: rtl;
}
.timeline-item:nth-child(odd) > * {
  direction: ltr;
}
.timeline-year {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-accent);
  text-align: center;
}
.timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--c-bg);
  box-shadow: 0 0 0 2px var(--c-accent);
}
.timeline-content h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--c-fg);
}
.timeline-content p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

.about-trust-section {
  margin-bottom: var(--space-5);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.footer-section h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--c-dark-fg);
}
.footer-section p,
.footer-section a {
  font-size: var(--text-sm);
  color: #6B7280;
  line-height: 1.8;
}
.footer-section a:hover {
  color: var(--c-dark-fg);
}
.footer-section ul li {
  margin-bottom: var(--space-1);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: #4B5563;
}

@media (max-width: 640px) {
  .about-block { grid-template-columns: 1fr; }
  .footer-simple { flex-direction: column; align-items: flex-start; }
  .timeline::before { left: 0; }
  .timeline-item {
    grid-template-columns: 40px 1fr;
    direction: ltr !important;
  }
  .timeline-item > * {
    direction: ltr !important;
  }
  .timeline-year {
    font-size: var(--text-xs);
  }
}

