.t360-complete {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.t360-complete__bar {
  flex: 1 1 160px;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.t360-complete__fill {
  display: block;
  height: 100%;
  background: #0f766e;
  border-radius: inherit;
}

.t360-complete__pct {
  font-weight: 800;
  color: #0f172a;
  font-size: 14px;
}

.t360-banner {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.t360-banner p { margin: 0 0 8px; }

.t360-saved {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.t360-saved p { margin: 0; font-weight: 700; }

.t360-span { grid-column: 1 / -1; }

.t360-profile,
.t360-contact {
  overflow: visible;
}

.t360-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
  background: #e2e8f0;
}

.t360-phone {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}

/* RTL page puts the first flex item on the right. Mobile rows are LTR so
   the country selector stays on the left of the national number. */
.t360-phone--mobile {
  direction: ltr;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}

.t360-phone--mobile .t360-phone__cc {
  order: 1;
}

.t360-phone--mobile input[data-t360-phone-national] {
  order: 2;
}

.t360-phone--mobile input[data-t360-phone-national] {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.t360-phone--mobile .t360-phone__panel {
  direction: rtl;
  inset-inline-start: 0;
  inset-inline-end: auto;
  width: min(100%, 320px);
}

@media (max-width: 480px) {
  .t360-phone--mobile .t360-phone__cc {
    max-width: 104px;
    padding: 0 6px;
    font-size: 12px;
  }
}

.t360-phone.is-open { z-index: 40; }

.t360-phone__cc {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  max-width: 118px;
  padding: 0 8px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.t360-phone__cc:hover,
.t360-phone__cc[aria-expanded="true"] {
  border-color: #fdba74;
  background: #fff7ed;
}

.t360-phone__caret { font-size: 11px; color: #64748b; }

.t360-phone input[data-t360-phone-national] {
  flex: 1 1 auto;
  min-width: 0;
}

.t360-phone__panel {
  position: absolute;
  inset-inline-start: 0;
  width: min(100%, 320px);
  top: calc(100% + 6px);
  z-index: 50;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.45);
  max-height: 260px;
  overflow: hidden;
  flex-direction: column;
}

.t360-phone__panel[hidden] {
  display: none !important;
}

.t360-phone__panel:not([hidden]) {
  display: flex;
}

.t360-phone__search {
  margin: 8px;
  width: calc(100% - 16px);
  box-sizing: border-box;
}

.t360-phone__list {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  overflow-y: auto;
  max-height: 200px;
}

.t360-phone__list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
}

.t360-phone__list li:hover,
.t360-phone__list li.is-selected {
  background: #fff7ed;
}

.t360-phone__empty {
  margin: 0;
  padding: 10px 12px;
  color: #64748b;
}

.t360-docs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.t360-doccard {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  min-width: 0;
}

.t360-doccard__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: #b91c1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.t360-doccard__body {
  min-width: 0;
  flex: 1 1 auto;
}

.t360-doccard__body strong {
  display: block;
  font-size: 13px;
}

.t360-doccard__file {
  margin: 2px 0 6px;
  color: #64748b;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.t360-doccard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.t360-upload { display: inline; }

.t360-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.t360-savewrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 24px;
}

.t360-save {
  width: 100%;
}

@media (min-width: 720px) {
  .s360-fields.t360-fields-2 {
    grid-template-columns: 1fr 1fr;
  }

  .t360-docs {
    grid-template-columns: 1fr 1fr;
  }

  .t360-save {
    width: auto;
    min-width: 220px;
    padding-inline: 28px;
  }
}

.s360-main {
  overflow-x: hidden;
}

.s360-form .da-pw-field > input[type="password"],
.s360-form .da-pw-field > input[type="text"] {
  padding-inline-end: 2.85rem;
  box-sizing: border-box;
}

.t360-lang {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t360-lang__chips,
.t360-dept-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 0;
}

.t360-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #99f6e4;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.t360-chip--empty {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #64748b;
}

.t360-chip--removable {
  cursor: pointer;
  border: 1px solid #99f6e4;
  background: #ecfdf5;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f766e;
}

.t360-chip--removable:hover {
  background: #ccfbf1;
}

.t360-chip__x {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  font-size: 0.85rem;
  line-height: 1;
}

.t360-lang__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t360-lang__opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  user-select: none;
}

.t360-lang__opt:hover {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.t360-lang__opt:has(input:checked) {
  border-color: #0f766e;
  background: #ecfdf5;
  color: #115e59;
}

.t360-lang__opt input {
  width: 1rem;
  height: 1rem;
  accent-color: #0f766e;
  margin: 0;
}

@media (max-width: 719px) {
  .t360-lang__opt {
    flex: 1 1 calc(50% - 8px);
    min-width: 132px;
  }
}

.t360-join {
  min-width: 0;
}

.t360-join__title {
  margin: 0 0 10px;
  font-weight: 800;
  color: #0f172a;
}

.t360-join__row {
  margin: 0;
}

@media (min-width: 720px) {
  .s360-fields.t360-join__row {
    grid-template-columns: 1fr 1fr;
  }
}

.t360-faculty-hero {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 16px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, #0f766e 0%, #115e59 55%, #0f172a 100%);
  color: #fff;
}

.t360-faculty-hero__photo {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}

.t360-faculty-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t360-faculty-hero__body {
  min-width: 0;
  flex: 1;
}

.t360-faculty-hero h1 {
  margin: 2px 0 10px;
  font-size: 1.35rem;
}

.t360-faculty-hero__lang-label {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ccfbf1;
}

.t360-faculty-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 12px;
  font-size: 0.82rem;
  color: #ecfdf5;
}

.t360-faculty-hero .s360-kicker {
  color: #99f6e4;
}

.t360-faculty-hero__langs,
.t360-faculty-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t360-faculty-hero__langs {
  margin-bottom: 10px;
}

.t360-faculty-hero .t360-chip {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.t360-status-badge {
  min-width: 140px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.t360-status-badge__k {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.t360-status-badge strong {
  display: block;
  margin-top: 2px;
  font-size: 0.92rem;
}

.t360-status-badge--core { background: rgba(251, 191, 36, 0.22); }
.t360-status-badge--active { background: rgba(45, 212, 191, 0.22); }
.t360-status-badge--associate { background: rgba(147, 197, 253, 0.22); }
.t360-status-badge--grade-a_plus,
.t360-status-badge--grade-a { background: rgba(250, 204, 21, 0.24); }

.t360-kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.t360-kpi {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 14px 16px;
  min-height: 110px;
}

.t360-kpi h2 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: #334155;
}

.t360-kpi__soon {
  margin: 0;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.t360-kpi__hint {
  margin: 6px 0 0;
  color: #94a3b8;
  font-size: 0.78rem;
}

.t360-framework__list {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.t360-framework__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f7;
  font-weight: 700;
  color: #334155;
}

.t360-framework__list em {
  font-style: normal;
  color: #94a3b8;
  font-size: 0.78rem;
}

.t360-framework__list .is-total {
  border-bottom: 0;
  color: #0f172a;
}

.t360-ptabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.t360-ptabs__btn {
  border: 1px solid #dbe3ee;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
  color: #334155;
  cursor: pointer;
}

.t360-ptabs__btn.is-active {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}

.t360-kpi__value {
  margin: 0;
  color: #0f766e;
  font-weight: 800;
  font-size: 1.15rem;
}

.t360-empty-note {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

.t360-grade-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.t360-grade-path__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  font-weight: 800;
  color: #64748b;
}

.t360-grade-path__step span {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.t360-grade-path__step.is-done {
  background: #ecfdf5;
  border-color: #99f6e4;
  color: #0f766e;
}

.t360-grade-path__step.is-current {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}

.t360-grade-path__step.is-next {
  background: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}

.t360-grade-path__arrow {
  color: #94a3b8;
  font-weight: 800;
}

.t360-honor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.t360-honor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #99f6e4;
  color: #115e59;
  font-weight: 800;
  font-size: 0.82rem;
}

.t360-honor small {
  display: block;
  font-weight: 600;
  color: #64748b;
}

.t360-honor__mark {
  color: #0f766e;
}

.t360-journey__line,
.t360-journey__years,
.t360-faculty-complete__lead {
  margin: 0 0 8px;
  font-weight: 800;
  color: #0f172a;
}

.t360-complete-list {
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.t360-complete-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #334155;
}

.t360-complete-list .is-done { color: #0f766e; }
.t360-complete-list .is-todo { color: #94a3b8; }

.t360-complete-list__mark {
  width: 1.1rem;
  text-align: center;
}

@media (min-width: 720px) {
  .t360-faculty-hero {
    padding: 22px 22px;
    gap: 20px;
  }

  .t360-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .t360-complete-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 719px) {
  .t360-faculty-hero {
    flex-direction: column;
    align-items: stretch;
  }
}
