/* Voices — moved to styles-voices.css */

/* Founder */
.founder-section {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  position: relative;
}
.founder-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: start;
  margin-top: 32px;
}
.founder-photo {
  position: relative;
  padding: 0 16px 16px 0;
}
.founder-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.founder-photo-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}
.founder-photo-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,7,0.5) 100%);
  pointer-events: none;
}
.founder-photo-caption {
  position: absolute; bottom: -8px; right: 24px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px; color: var(--accent); letter-spacing: 0.15em;
  background: var(--bg-0); padding: 4px 8px;
}
.founder-photo-deco {
  position: absolute; right: 0; bottom: 0;
  width: 60%; height: 60%;
  border: 1px solid var(--accent);
  z-index: -1;
  opacity: 0.4;
}

.founder-en {
  font-family: var(--serif-en); font-style: italic;
  font-size: 14px; color: var(--accent); letter-spacing: 0.15em;
  margin: 0;
}
.founder-name-jp {
  font-family: var(--serif-jp); font-weight: 500;
  font-size: 44px; color: var(--ink-0);
  margin: 8px 0 4px; letter-spacing: 0.08em;
}
.founder-role {
  font-size: 13px; color: var(--ink-3); letter-spacing: 0.1em;
  margin: 0 0 32px;
}
.founder-bio { display: flex; flex-direction: column; gap: 16px; }
.founder-bio p {
  font-size: 14px; line-height: 2; color: var(--ink-2);
  margin: 0;
}
.founder-bio .hl { color: var(--accent); font-weight: 500; }
.founder-quote {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-1);
  letter-spacing: 0.04em;
  border-left: 1px solid var(--accent);
  padding-left: 18px;
  margin-top: 8px !important;
  font-style: italic;
}
.founder-points {
  list-style: none; padding: 24px 0 0; margin: 32px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.founder-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-1);
}
.founder-points .bullet {
  width: 6px; height: 6px; background: var(--accent);
  transform: rotate(45deg); flex-shrink: 0;
}

@media (max-width: 800px) {
  .founder-layout { grid-template-columns: 1fr; gap: 32px; }
  .founder-name-jp { font-size: 32px; }
}

/* Flow */
.flow-section { background: var(--bg-0); }
.flow-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  max-width: 720px; margin: 0 auto;
}
.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  position: relative;
  align-items: start;
}
.flow-item:not(:last-child)::after {
  content: ""; position: absolute;
  left: 22px; top: 70px; bottom: -20px;
  width: 1px; background: var(--line);
}
.flow-no {
  font-family: var(--serif-en);
  font-size: 44px; color: var(--accent);
  letter-spacing: 0.05em; line-height: 1;
}
.flow-title {
  font-family: var(--serif-jp); font-weight: 500;
  font-size: 20px; color: var(--ink-0);
  margin: 4px 0 8px; letter-spacing: 0.04em;
}
.flow-desc {
  font-size: 13px; line-height: 1.9;
  color: var(--ink-2); margin: 0;
}

/* Final CTA */
.final-cta-section {
  position: relative;
  padding: clamp(96px, 12vw, 160px) clamp(20px, 5vw, 48px);
  background: var(--bg-1);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.final-cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,9,7,0.78) 0%, rgba(10,9,7,0.92) 100%),
    url('assets/campus-03.png');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.85) saturate(0.9);
}
.final-cta-section::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg-1) 0%, rgba(17,15,12,0.85) 50%, var(--bg-0) 100%);
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--serif-jp); font-weight: 500;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.6; letter-spacing: 0.04em;
  color: var(--ink-0);
  margin: 24px 0 32px;
}
.final-cta-title em { font-style: normal; color: var(--accent); }
.final-cta-lead {
  font-size: 15px; line-height: 2; color: var(--ink-2);
  margin: 0 0 48px;
}
.final-cta-lead .dim { color: var(--ink-3); font-size: 13px; }
.final-cta-buttons { display: flex; justify-content: center; }
.cta-large { padding: 22px 48px; font-size: 16px; }

/* Footer */
.footer {
  background: #050402;
  padding: 80px clamp(20px, 5vw, 48px) 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
}
.footer-brand .brand-mark { font-size: 24px; }
.footer-logo {
  display: inline-flex;
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-logo svg { width: 100%; height: 100%; }
.footer-tag {
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; color: var(--accent);
  margin: 8px 0 16px; letter-spacing: 0.1em;
}
.footer-desc {
  font-family: var(--serif-jp); font-size: 13px;
  color: var(--ink-3); line-height: 1.8;
  margin: 0;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-col h4 {
  font-family: var(--serif-en); font-style: italic;
  font-size: 12px; color: var(--accent); letter-spacing: 0.15em;
  margin: 0 0 16px; font-weight: 400;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 12px; color: var(--ink-2); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .dim { font-size: 12px; color: var(--ink-4); }
.footer-base {
  max-width: var(--maxw); margin: 64px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
