@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400&display=swap');

.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  animation: heroZoom 14s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,2,4,0.78);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 24px 0;
}

.about-hero-title {
  display: block;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.hero-word--accent {
  color: var(--highlight);
}

.about-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.reanimate {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reanimate[data-anim="blur-up"] {
  filter: blur(10px);
  transform: translateY(16px);
}
.reanimate[data-anim="blur-up"].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reanimate[data-anim="slide-left"] { transform: translateX(-30px); }
.reanimate[data-anim="slide-right"] { transform: translateX(30px); }
.reanimate[data-anim="slide-left"].is-visible,
.reanimate[data-anim="slide-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-timeline { display: flex; flex-direction: column; padding-left: 8px; }

.timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20px; left: 8px;
  width: 2px; bottom: 0;
  background: rgba(0,82,212,0.3);
}

.timeline-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative; z-index: 1;
}

.timeline-dot--a { background: var(--accent-a); box-shadow: 0 0 12px rgba(0,82,212,0.55); }
.timeline-dot--d { background: var(--accent-d); box-shadow: 0 0 12px rgba(91,127,255,0.55); }
.timeline-dot--e { background: var(--accent-e); box-shadow: 0 0 12px rgba(255,178,62,0.55); }
.timeline-dot--c { background: var(--accent-c); box-shadow: 0 0 12px rgba(0,255,65,0.45); }

.timeline-year {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}

.timeline-content h4 { font-size: 16px; font-weight: 700; color: var(--deep); margin-bottom: 6px; }
.timeline-content p  { font-size: 14px; line-height: 1.7; color: var(--text-faint); margin-bottom: 0; }

.why-built {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.why-built-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--dark-text-faint);
  margin: 0;
}

@media (max-width: 680px) {
  .why-built-body { font-size: 16px; }
}

.founder-notes{
    max-width:none;
    margin:0;
}

.founder-note{
    position:relative;
    padding:32px 4px;
}

.founder-note:not(:last-child){
    border-bottom:1px solid var(--border-soft);
    padding-bottom:32px;
}

.founder-note:first-child{
    padding-top:4px;
}

.founder-note:last-child{
    padding-bottom:4px;
}

.founder-notes-card{
    max-width:880px;
    margin:48px auto 0;
    background:var(--surface);
    border:1px solid var(--border-soft);
    border-radius:16px;
    padding:8px 44px;
    box-shadow:0 1px 3px rgba(0,26,51,0.04);
}
.founder-note-quote{
    font-size:48px;
    line-height:1;
    color:var(--mid);
    opacity:.25;
    margin-bottom:4px;
}

.founder-note-body{
    font-size:17px;
    line-height:1.8;
    color:var(--text);
    font-family:"Source Serif 4", serif;
}

.founder-note-sig{
    display:flex;
    align-items:baseline;
    gap:8px;
    margin-top:28px;
    padding-top:0;
    border-top:none;
}

.sig-name {
  font-size: 15px; font-weight: 700; color: var(--deep); font-style: normal; font-family: var(--font-main);
}
.sig-role {
  font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-main);
}
.sig-role::before {
  content: "—";
  margin-right: 6px;
  color: var(--border-soft);
}

@media (max-width: 600px) {
  .founder-note { padding: 32px 26px 26px; }
}

.values-header { margin-bottom: 56px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 36px 28px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.25s;
}

.value-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

.value-icon {
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
}

.value-icon svg { width: 21px; height: 21px; stroke-width: 1.75; }
.value-icon--a { background: rgba(0,82,212,0.18);   color: #7eb8ff; }
.value-icon--d { background: rgba(91,127,255,0.18); color: #b3c1ff; }
.value-icon--e { background: rgba(255,178,62,0.2);  color: #ffd28a; }
.value-icon--c { background: rgba(0,255,65,0.16);   color: #7dffa0; }

.value-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.value-card p  { font-size: 14px; line-height: 1.75; color: var(--dark-text-faint); margin-bottom: 0; }

.voices-header { margin-bottom: 56px; }

.voices-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.voices-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0 4px 32px;
  animation: voicesScroll 36s linear infinite;
}

@keyframes voicesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.voice-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 380px;
  flex-shrink: 0;
}


.voice-quote-mark {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 60px;
  line-height: 1;
  font-family: var(--font-note);
  color: var(--mid);
  opacity: 0.1;
}

.voice-text { font-family: var(--font-note); font-size: 16px; line-height: 1.7; color: var(--text); font-style: normal; margin: 0; flex: 1; }
.voice-author { display: flex; align-items: center; gap: 12px; }

.voice-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.voice-avatar--a { background: rgba(0,82,212,0.1);   color: var(--accent-a); }
.voice-avatar--d { background: rgba(91,127,255,0.1); color: var(--accent-d); }
.voice-avatar--e { background: rgba(255,178,62,0.14); color: #c9740c; }

.voice-name { font-size: 14px; font-weight: 700; color: var(--deep); margin: 0; }
.voice-role { font-size: 12px; color: var(--text-faint); margin: 2px 0 0; }

@media (max-width: 680px) {
  .voice-card { width: 300px; }
}

.faq-header { margin-bottom: 48px; }

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 28px;
}

.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--dark-text-faint);
  margin: 0;
}

.press-header { margin-bottom: 48px; }

.press-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.press-item {
  flex: 1;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}

.press-item:hover { background: rgba(0,82,212,0.03); }

.press-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,82,212,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  margin-bottom: 4px;
}
.press-icon svg { width: 17px; height: 17px; stroke-width: 1.75; }

.press-name { font-size: 15px; font-weight: 700; color: var(--deep); }
.press-detail { font-size: 13px; color: var(--text-faint); line-height: 1.5; }

.press-divider { width: 1px; background: var(--border-soft); flex-shrink: 0; }

@media (max-width: 900px) {
  .press-strip { flex-direction: column; }
  .press-divider { width: 100%; height: 1px; }
}

.partners-header { margin-bottom: 48px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease;
}

.partner-card:hover { transform: translateY(-4px); }

.partner-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.partner-icon svg { width: 21px; height: 21px; stroke-width: 1.75; }

.partner-icon--a { background: rgba(0,82,212,0.16);   color: #7eb8ff; }
.partner-icon--d { background: rgba(91,127,255,0.16);  color: #b3c1ff; }
.partner-icon--e { background: rgba(255,178,62,0.18);  color: #ffd28a; }
.partner-icon--c { background: rgba(0,255,65,0.14);    color: #7dffa0; }

.partner-name { font-size: 15px; font-weight: 700; color: #fff; margin: 0; }
.partner-desc { font-size: 13px; line-height: 1.7; color: var(--dark-text-faint); margin: 0; }

.partners-cta { font-size: 15px; color: var(--dark-text-faint); }

@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .partners-grid { grid-template-columns: 1fr; } }

.team-intro {
  color: var(--text-faint);
  font-size: 16px;
  max-width: 660px;
  margin-bottom: 56px;
  line-height: 1.75;
}

.committee-block {
  padding: 28px 0 40px;
}

.committee-block:last-child { padding-bottom: 0; }

.committee-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.committee-rule { flex: 1; height: 1px; background: var(--border-soft); }

.member-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  flex-shrink: 0;
}

.committee-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap; flex-shrink: 0;
}
.committee-badge svg { width: 13px; height: 13px; stroke-width: 2; }

.committee-badge--accent-a { color: var(--accent-a); background: rgba(0,82,212,0.1);   border: 1px solid rgba(0,82,212,0.2); }
.committee-badge--accent-d { color: var(--accent-d); background: rgba(91,127,255,0.1); border: 1px solid rgba(91,127,255,0.22); }
.committee-badge--accent-c { color: #129e34;         background: rgba(0,255,65,0.1);   border: 1px solid rgba(0,255,65,0.22); }
.committee-badge--accent-e { color: #c9740c;         background: rgba(255,178,62,0.14); border: 1px solid rgba(255,178,62,0.28); }
.committee-badge--mid      { color: var(--mid);      background: rgba(0,82,212,0.08);  border: 1px solid rgba(0,82,212,0.18); }

.committee-desc {
  font-size: 13px;
  color: var(--text-faint);
  margin: 0 0 18px;
  line-height: 1.6;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 18px;
}

.profile-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card--accent-a { border-top: 2px solid var(--accent-a); }
.profile-card--accent-d { border-top: 2px solid var(--accent-d); }
.profile-card--accent-c { border-top: 2px solid var(--accent-c); }
.profile-card--accent-e { border-top: 2px solid var(--accent-e); }
.profile-card--mid      { border-top: 2px solid var(--mid); }

.profile-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,26,51,0.1); }

.profile-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
}

.profile-avatar { width: 100%; height: 100%; }

.profile-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.profile-photo-placeholder::after { content: none; }

.profile-initials {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.profile-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; }

.profile-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.3;
}

.profile-role-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-load-error {
  font-size: 14px;
  color: var(--text-faint);
}

.join-section { text-align: center; }

.join-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.join-headline {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin: 14px 0 18px;
}
.join-headline em { font-style: normal; color: var(--highlight); }

.join-sub {
  font-size: 16px;
  color: var(--dark-text-faint);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.join-committees {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 980px;
  margin-bottom: 40px;
}

.join-role {
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: left;
  transition: transform 0.25s ease;
  background: rgba(255,255,255,0.03);
}
.join-role:hover { transform: translateY(-3px); }

.join-role-icon { display: block; margin-bottom: 10px; }
.join-role-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }

.join-role--a   .join-role-icon, .join-role--a   .join-role-name { color: #7eb8ff; }
.join-role--d   .join-role-icon, .join-role--d   .join-role-name { color: #b3c1ff; }
.join-role--c   .join-role-icon, .join-role--c   .join-role-name { color: #7dffa0; }
.join-role--e   .join-role-icon, .join-role--e   .join-role-name { color: #ffd28a; }
.join-role--mid .join-role-icon, .join-role--mid .join-role-name { color: #7eb8ff; }

.join-role-name { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.join-role-detail { display: block; font-size: 11px; color: var(--dark-text-faint); line-height: 1.5; }

@media (max-width: 1000px) { .join-committees { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .join-committees { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .join-committees { grid-template-columns: 1fr; } }

@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 680px) {
  .about-hero-title { font-size: clamp(40px, 12vw, 68px); }
  .values-grid { grid-template-columns: 1fr; }
}

:root {
  
  --primary-dark:  #020204;
  --primary-light: #F7F7F7;
  --highlight:     #00D4FF;
  --mid:            #0052D4;
  --deep:           #001A33;
  --active:         #00FF41;

  --bg:             #F7F7F7;   
  --bg-2:           #EDEFF3;   
  --surface:        #FFFFFF;
  --text:           #0B1320;
  --text-faint:     #5B6577;
  --border-soft:    rgba(0,26,51,0.10);

  --dark-1:         #020204;   
  --dark-2:         #0A1424;   
  --dark-3:         #10192B;   
  --dark-border:    rgba(255,255,255,0.08);
  --dark-text:      #FFFFFF;
  --dark-text-faint:rgba(255,255,255,0.46);

  --accent-a:       var(--mid);       
  --accent-b:       var(--highlight); 
  --accent-c:       var(--active);    
  --accent-d:       #5B7FFF;          
  --accent-e:       #FFB23E;          

  --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-note: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.section {
  position: relative;
  padding: 96px 0;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
  transition: letter-spacing 0.5s ease, opacity 0.5s ease;
}

.theme-dark .section-label,
.theme-dark--navy .section-label,
.theme-dark--slate .section-label {
  color: var(--highlight);
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--deep);
}

.theme-dark h2,
.theme-dark--navy h2,
.theme-dark--slate h2 {
  color: #fff;
}

h2 em {
  font-style: normal;
  color: var(--mid);
}

.theme-light {
  background: var(--bg);
  color: var(--text);
}
.theme-light--alt {
  background: var(--bg-2);
  color: var(--text);
}
.theme-light--surface {
  background: var(--surface);
  color: var(--text);
}
.theme-dark {
  background: var(--dark-1);
  color: var(--dark-text);
}
.theme-dark--navy {
  background: var(--dark-2);
  color: var(--dark-text);
}
.theme-dark--slate {
  background: var(--dark-3);
  color: var(--dark-text);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  background: var(--mid);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,82,212,0.35);
}

.link { color: var(--highlight); text-decoration: none; font-weight: 600; }
.link:hover { text-decoration: underline; }

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.slide-in-left.is-visible,
.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

#hs-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.5s ease;
}
#hs-loader.hs-loader--done { opacity: 0; }

.hs-loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
}
.hs-loader-orb--1 { width: 280px; height: 280px; background: var(--mid); top: 18%; left: 22%; }
.hs-loader-orb--2 { width: 220px; height: 220px; background: var(--highlight); bottom: 18%; right: 22%; }

.hs-loader-logo {
  position: relative;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}

.hs-loader-bar-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hs-loader-track {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.hs-loader-fill {
  height: 100%;
  width: 0%;
  background: var(--mid);
  transition: width 3.6s ease;
}
.hs-loader-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.team-header { margin-bottom: 16px; }
.team-header h2 { margin-top: 6px; }
.profile-card { border-radius: 16px; }
.profile-photo-wrap { padding: 0; }
.profile-body { padding: 14px 14px 16px; }

.team-full .team-header {
  display: block !important;
  align-items: unset;
  justify-content: unset;
  flex-wrap: unset;
  margin-bottom: 32px;
}
.team-full .team-header .section-label {
  display: block;
  margin-bottom: 14px;
}
.team-full .team-header h2 {
  display: block;
  color: var(--deep);
  margin: 0;
}
.faq-header h2 {
  display: block;
  color: #fff;
}

.profile-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,26,51,0.04);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.25s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,26,51,0.12);
  border-color: var(--mid);
}

.profile-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-soft);
}

.profile-body {
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.profile-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
  line-height: 1.3;
}

.profile-role-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.profile-card--accent-d { border-top: 3px solid var(--accent-d); }
.profile-card--accent-c { border-top: 3px solid var(--accent-c); }
.profile-card--accent-e { border-top: 3px solid var(--accent-e); }
.profile-card--mid      { border-top: 3px solid var(--mid); }
.committee-badge--highlight { color: #0090b3; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25); }
.profile-card--highlight    { border-top: 3px solid var(--highlight); }

.timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 24px;
  padding-bottom: 36px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 24px; left: 8px;
  width: 2px; bottom: -4px;
  background: var(--border-soft);
}

.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative; z-index: 1;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border-soft);
}

.timeline-content {
  padding-bottom: 4px;
}

.timeline-dot--a { background: var(--accent-a); }
.timeline-dot--d { background: var(--accent-d); }
.timeline-dot--e { background: var(--accent-e); }
.timeline-dot--c { background: var(--accent-c); }
.reveal-item {
  opacity: 1;
  transform: none;
  transition: none;
}

.reanimate {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.slide-in-left,
.slide-in-right {
  opacity: 1;
  transform: none;
  transition: none;
}