*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fafafa;
  --surface: #fff;
  --surface2: #f2f2f2;
  --border: #e1e1e1;
  --border2: #d7d7d7;
  --accent: #318dfd;
  --accent-dim: rgba(49,141,253,0.08);
  --text: #444;
  --muted: #868686;
  --body-font: 'Cabin', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --display: 'Cabin', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

html, body { width: 100%; min-height: 100vh; background: var(--bg); color: var(--text); font: 16px/25px var(--body-font); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.logo { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--text); }
.logo span { color: var(--accent); }
.nav-badge { font-size: 11px; letter-spacing: 0.06em; color: var(--muted); border: 1px solid var(--border2); padding: 5px 14px; border-radius: 3px; }

.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 48px 110px;
  background: var(--bg);
}

.eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 24px; color: var(--text);
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-name span { color: var(--accent); }

.hero-tagline {
  font-family: var(--body-font);
  font-size: clamp(14px, 1.5vw, 17px);
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-tagline strong { color: var(--text); font-style: normal; font-weight: 600; }

.divider {
  width: 40px; height: 2px; background: var(--border2);
  margin: 0 auto 36px;
  opacity: 0; animation: fadeUp 0.8s ease 0.65s forwards;
}

.hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-width: 500px; margin: 0 auto 40px;
  opacity: 0; animation: fadeUp 0.8s ease 0.75s forwards;
}
.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }

.manifesto {
  margin: 0 auto 48px; max-width: 500px;
  border-left: 3px solid var(--accent);
  padding: 14px 20px; text-align: left;
  background: var(--accent-dim);
  border-radius: 0 4px 4px 0;
  opacity: 0; animation: fadeUp 0.8s ease 0.88s forwards;
}
.manifesto p { font-size: 14px; color: var(--muted); line-height: 1.85; }
.manifesto p em { color: var(--text); font-style: normal; font-weight: 600; }

.invite-block { opacity: 0; animation: fadeUp 0.8s ease 1s forwards; width: 100%; max-width: 440px; margin: 0 auto; }
.invite-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.invite-form { display: flex; border: 1px solid var(--border2); border-radius: 4px; overflow: hidden; background: var(--surface); transition: border-color 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.invite-form:focus-within { border-color: var(--accent); }
.invite-form input { flex: 1; background: transparent; border: none; outline: none; padding: 13px 16px; font-family: var(--body-font); font-size: 14px; color: var(--text); }
.invite-form input::placeholder { color: #bbb; }
.invite-btn { background: var(--accent); color: #fff; border: none; padding: 13px 20px; font-family: var(--body-font); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.invite-btn:hover { background: #1a7ae8; }
.invite-btn:disabled { background: #aaa; cursor: not-allowed; }
.invite-note { font-size: 12px; color: #aaa; margin-top: 10px; }
.confirm-msg { display: none; font-size: 13px; color: var(--accent); margin-top: 14px; font-weight: 600; }
.confirm-msg.show { display: block; }
.error-msg { display: none; font-size: 13px; color: #c0392b; margin-top: 14px; }
.error-msg.show { display: block; }

.scroll-hint { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp 0.8s ease 1.35s forwards; }
.scroll-hint span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--border2), transparent); animation: scrollPulse 2s ease infinite; }

.ticker { position: relative; z-index: 1; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; overflow: hidden; background: #fff; }
.ticker-inner { display: flex; gap: 56px; animation: ticker 36s linear infinite; white-space: nowrap; width: max-content; }
.ticker-item { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 14px; }
.ticker-item::before { content: '◆'; color: var(--accent); font-size: 6px; }

.section { position: relative; z-index: 1; padding: 72px 48px; max-width: 1060px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 40px; display: flex; align-items: center; gap: 16px; font-weight: 700; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.vision-headline { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; color: var(--text); }
.vision-headline span { color: var(--accent); }
.vision-body { font-size: 14px; color: var(--muted); line-height: 1.85; }
.vision-body + .vision-body { margin-top: 14px; }
.vision-body em { color: var(--text); font-style: normal; font-weight: 600; }
.partner-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--border2); border-radius: 4px; padding: 10px 16px; font-size: 12px; color: var(--muted); margin-top: 24px; background: var(--surface); }
.partner-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse 2.4s ease infinite; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.pillar { background: var(--surface); padding: 32px 24px; transition: background 0.2s; }
.pillar:hover { background: var(--surface2); }
.pillar-num { font-size: 11px; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 700; }
.pillar-title { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.2; color: var(--text); }
.pillar-body { font-size: 13px; color: var(--muted); line-height: 1.8; }
.pillar-body em { color: var(--text); font-style: normal; font-weight: 600; }

.steps { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.step { display: grid; grid-template-columns: 56px 1fr; border-bottom: 1px solid var(--border); background: var(--surface); transition: background 0.2s; }
.step:last-child { border-bottom: none; }
.step:hover { background: var(--surface2); }
.step-num { display: flex; align-items: flex-start; justify-content: center; padding: 26px 0; font-size: 11px; color: var(--accent); letter-spacing: 0.1em; border-right: 1px solid var(--border); font-weight: 700; }
.step-content { padding: 24px 26px; }
.step-title { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--text); }
.step-body { font-size: 13px; color: var(--muted); line-height: 1.8; }
.step-body em { color: var(--text); font-style: normal; font-weight: 600; }

.council-block { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--surface); }
.council-header { padding: 22px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 14px; background: var(--surface2); }
.council-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(49,141,253,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; color: var(--accent); }
.council-title { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.council-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.council-body { padding: 22px 26px; font-size: 14px; color: var(--muted); line-height: 1.85; }
.council-body em { color: var(--text); font-style: normal; font-weight: 600; }
.council-items { margin-top: 18px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.council-item { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 12px; background: var(--bg); }
.council-item:last-child { border-bottom: none; }
.council-item-marker { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.council-item em { color: var(--text); font-style: normal; font-weight: 600; }

.media-section { position: relative; z-index: 1; padding: 16px 48px 72px; max-width: 1060px; margin: 0 auto; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.media-image-wrap { position: relative; aspect-ratio: 1/1; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--surface2); }
.media-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--muted); position: relative; }
.media-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(0,0,0,0.015) 18px, rgba(0,0,0,0.015) 19px); }
.media-icon { width: 52px; height: 52px; border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; position: relative; z-index: 1; color: var(--accent); cursor: pointer; transition: background 0.2s; background: #fff; }
.media-icon:hover { background: var(--accent-dim); }
.media-caption { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1; color: var(--muted); }
.embed-field-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 700; }
.embed-input { width: 100%; background: var(--surface); border: 1px solid var(--border2); border-radius: 4px; padding: 10px 14px; font-family: var(--body-font); font-size: 13px; color: var(--text); outline: none; margin-bottom: 14px; transition: border-color 0.2s; }
.embed-input:focus { border-color: var(--accent); }
.embed-input::placeholder { color: #bbb; }
.embed-btn { background: var(--surface2); border: 1px solid var(--border2); color: var(--text); padding: 10px 18px; font-family: var(--body-font); font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 4px; transition: background 0.2s, border-color 0.2s; }
.embed-btn:hover { background: var(--border); border-color: var(--accent); }
.media-right { display: flex; flex-direction: column; gap: 16px; padding-top: 6px; }
.media-heading { font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); }
.media-heading span { color: var(--accent); }
.media-subtext { font-size: 13px; color: var(--muted); line-height: 1.85; }
.audio-wrapper { display: none; flex-direction: column; gap: 8px; }
.audio-wrapper.visible { display: flex; }
.audio-wrapper audio { width: 100%; border-radius: 4px; outline: none; }

.footer-wrap { position: relative; z-index: 1; border-top: 1px solid var(--border); background: #fff; }
.footer-inner { max-width: 1060px; margin: 0 auto; padding: 44px 48px 36px; display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-logo { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; margin-bottom: 4px; color: var(--text); }
.footer-logo span { color: var(--accent); }
.footer-tagline-small { font-size: 12px; color: var(--muted); font-style: italic; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-link { font-size: 12px; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }
.footer-copy { text-align: center; font-size: 12px; color: #bbb; padding: 18px 48px 32px; border-top: 1px solid var(--border); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

@media (max-width: 720px) {
  nav { padding: 16px 20px; }
  .hero, .section, .media-section { padding-left: 20px; padding-right: 20px; }
  .vision-grid, .media-grid, .pillars { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { align-items: flex-start; }
}
