:root {
  --lime-900: #3a4a02;
  --lime-700: #6c8a00;
  --lime-500: #c6f05d;
  --lime-300: #e5ffad;
  --lime-200: #f0ffd0;
  --sky-900: #0f243f;
  --sky-700: #1f4677;
  --stone-100: #f7f8fb;
  --stone-300: #e1e6ef;
  --stone-500: #b0b7c3;
  --text: #1f2933;
  --muted: #5f6d7a;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(8, 24, 54, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #fdfdf5, #f0f2f8);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--sky-700);
  text-decoration: none;
  font-weight: 600;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.console-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 28px 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.console-header {
  background: #dff06b;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.org-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  margin: 0;
  color: var(--muted);
}

.header-brand h1 {
  margin: 4px 0 0;
  font-size: 1.6rem;
  color: var(--sky-900);
}

.search {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--stone-300);
  border-radius: 10px;
  padding: 6px 14px;
  background: var(--white);
  font-size: 0.9rem;
}

.search input {
  border: none;
  background: transparent;
  flex: 1;
  width: 100%;
  font: inherit;
}

.search input:focus {
  outline: none;
}

.search input::placeholder {
  color: #706e6b;
}

/* Quick Switcher Dropdown */
.search {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  animation: dropDown 0.2s ease;
}

.search-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f3f2f2;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover,
.search-item.selected {
  background: #f4f6f9;
}

.search-item-icon {
  font-size: 1.25rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-item-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: #080707;
}

.search-no-results {
  padding: 20px;
  text-align: center;
}

.search-no-results p {
  margin: 0;
  color: #706e6b;
  font-size: 0.875rem;
}

.inline-search {
  min-width: 280px;
  max-width: 400px;
}

.header-brand .inline-search {
  margin-left: 20px;
  flex: 1;
}

.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.status-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.status-pill {
  background: rgba(95, 109, 122, 0.16);
  color: var(--sky-900);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.action-icons {
  display: flex;
  gap: 8px;
}

.language-switcher {
  display: flex;
  gap: 4px;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  outline: none;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-btn:focus {
  outline: none;
}

.lang-btn.active {
  opacity: 0.7;
}

.flag-icon {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
}

/* Notification button wrapper */
.notification-wrapper {
  position: relative;
  display: inline-block;
}

/* Notification badge */
.notification-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ea001e;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Notification Panel */
.notification-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 420px;
  max-height: 600px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  animation: dropDown 0.2s ease;
  transform-origin: top right;
}

/* Arrow pointing up to the notification button */
.notification-panel::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 12px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

.notification-panel.show {
  display: flex;
  flex-direction: column;
}

.notification-panel-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.notification-panel-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  gap: 12px;
}

.notification-panel-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #080707;
}

.mark-read-link {
  font-size: 0.875rem;
  color: #0176d3;
  text-decoration: none;
  white-space: nowrap;
}

.mark-read-link:hover {
  text-decoration: underline;
}

.close-panel {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #706e6b;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.close-panel:hover {
  background: #f3f2f2;
}

.notification-list {
  overflow-y: auto;
  max-height: 540px;
}

.notification-item {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  transition: background 0.2s;
}

.notification-item:hover {
  background: #f9f9f9;
}

.notification-item.unread {
  background: #f4f6f9;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.welcome-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.notification-icon svg {
  width: 20px;
  height: 20px;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-content h4 {
  margin: 0 0 4px 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #080707;
}

.notification-content p {
  margin: 0 0 8px 0;
  font-size: 0.813rem;
  line-height: 1.4;
  color: #3e3e3c;
}

.notification-time {
  font-size: 0.75rem;
  color: #706e6b;
}

.unread-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0176d3;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dropDown {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Responsive notification panel */
@media (max-width: 768px) {
  .notification-panel {
    right: -10px;
    width: 340px;
  }
}

@media (max-width: 480px) {
  .notification-panel {
    right: -20px;
    width: calc(100vw - 40px);
  }
}

.icon-btn {
  border: none;
  background: transparent;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, filter 0.15s ease;
  position: relative;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(0.8);
}

.sf-icon {
  width: 22px;
  height: 22px;
  fill: #585c63;
}

.sf-icon.large {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 10px;
  fill: #fff;
  background: var(--sky-700);
}

.user-chip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-900);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  margin: 6px 0 0;
  color: var(--sky-900);
}

.icon-heading.icon-account .sf-icon.large {
  background: linear-gradient(135deg, #1d6ad5, #58abff);
}

.icon-heading.icon-contact .sf-icon.large {
  background: linear-gradient(135deg, #c42d76, #ff8fc4);
}

.object-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--stone-300);
  padding-bottom: 8px;
  overflow-x: auto;
}

.object-tab {
  padding: 12px 16px;
  border: 1px solid var(--stone-300);
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  background: var(--white);
  min-width: 120px;
  text-align: center;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.object-tab.active {
  border-color: var(--sky-700);
  color: var(--sky-900);
  background: rgba(31, 70, 119, 0.08);
  box-shadow: 0 4px 12px rgba(15, 36, 63, 0.12);
}

main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tab-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  gap: 24px;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  align-items: start;
  gap: 20px;
}

.tab-panel.active#experience,
.tab-panel.active#education,
.tab-panel.active#projects,
.tab-panel.active#skills,
.tab-panel.active#technologies,
.tab-panel.active#contact {
  grid-template-columns: 1fr;
}

.tab-panel.active#experience .record-sheet,
.tab-panel.active#education .record-sheet,
.tab-panel.active#projects .record-sheet,
.tab-panel.active#skills .record-sheet,
.tab-panel.active#technologies .record-sheet,
.tab-panel.active#contact .record-sheet {
  max-width: 100%;
}

.list-view,
.record-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.record-sheet {
  background: #fcfdfb;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.record-sheet__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--stone-300);
  padding-bottom: 12px;
}

.record-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.record-table th {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 12px 10px;
  text-align: left;
  width: 22%;
}

.record-table td {
  padding: 12px 14px 12px 0;
  color: var(--sky-900);
}

.record-table tr {
  border-bottom: 1px solid var(--stone-300);
}

.record-table tr:last-child {
  border-bottom: none;
}

.record-table.two-col th {
  width: 18%;
}

.record-table.two-col td {
  width: 32%;
}

.record-table.single-col th {
  width: 24%;
}

/* Record tabs */
.record-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--stone-300);
  margin-bottom: 0;
  background: #fff;
}

.record-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.875rem;
  font-weight: 400;
  color: #706e6b;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  bottom: -2px;
}

.record-tab:hover {
  color: #16325c;
  background: #f3f3f3;
}

.record-tab.active {
  color: #16325c;
  font-weight: 600;
  border-bottom-color: #0176d3;
}

/* Tab content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content .experience-timeline {
  padding-top: 0;
}

/* Details section (collapsible) */
.details-section {
  background: #fff;
  border: 1px solid var(--stone-300);
  border-top: none;
  border-radius: 0 0 4px 4px;
  margin-bottom: 1rem;
}

.details-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #f3f3f3;
  cursor: pointer;
  list-style: none;
  user-select: none;
  border-bottom: 1px solid var(--stone-300);
}

.details-header::-webkit-details-marker {
  display: none;
}

.details-header h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #16325c;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  fill: #706e6b;
  transition: transform 0.2s;
}

.details-section[open] .chevron-icon {
  transform: rotate(0deg);
}

.details-section:not([open]) .chevron-icon {
  transform: rotate(-90deg);
}

/* Detail fields grid (Salesforce style) */
.detail-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  background: #fff;
  padding: 0 1.5rem;
}

.detail-field-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone-300);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-field-item label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.detail-field-item p {
  margin: 0;
  color: var(--sky-900);
  font-size: 0.875rem;
  word-break: break-word;
}

.detail-field-item:nth-last-child(-n+2) {
  border-bottom: none;
}

/* Experience timeline */
.experience-timeline {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--stone-300);
}

.experience-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0176d3;
  border: 2px solid #fff;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.experience-header h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #16325c;
}

.experience-header .company {
  margin: 0;
  font-size: 0.875rem;
  color: #0176d3;
  font-weight: 500;
}

.date-badge {
  background: #f3f3f3;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #706e6b;
  white-space: nowrap;
}

.experience-details {
  color: var(--muted);
  font-size: 0.875rem;
}

.experience-details .location {
  margin: 0 0 0.5rem 0;
  font-size: 0.8rem;
  color: #706e6b;
}

.experience-details .description {
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

/* Projects list */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  background: #fff;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  padding: 1rem;
  transition: all 0.2s;
}

.project-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.project-header h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #16325c;
}

.project-tag {
  background: #0176d3;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
}

.project-description {
  margin: 0 0 0.75rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.project-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  color: #0176d3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.project-link:hover {
  color: #014486;
  text-decoration: underline;
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-card-large {
  background: #fff;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.project-card-large:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.project-image {
  width: 100%;
  height: 200px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--stone-300);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image.ssl-badge {
  background: linear-gradient(135deg, #4bca81, #2e7d5a);
}

.project-image.project-bg-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.project-image.project-bg-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.project-image.project-bg-3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.project-icon {
  font-size: 5rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.ssl-grade {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.project-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-content .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.project-content .project-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #16325c;
}

.project-content .project-description {
  margin: 0 0 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.project-footer {
  margin-top: auto;
}

/* Skills section */
.skills-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f3f3f3;
  border-radius: 4px;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--stone-300);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #706e6b;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #e8e8e8;
  border-color: #0176d3;
}

.filter-btn.active {
  background: #0176d3;
  color: #fff;
  border-color: #0176d3;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: #fff;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  padding: 1.5rem;
  transition: all 0.3s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.skill-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.skill-card.hidden {
  display: none;
}

.skill-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.skill-icon.java-bg {
  background: linear-gradient(135deg, #f89820, #d35400);
}

.skill-icon.js-bg {
  background: linear-gradient(135deg, #f7df1e, #f0db4f);
  color: #000;
  font-weight: 700;
  font-size: 1.5rem;
}

.skill-icon.server-bg {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.skill-icon.ia-bg {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.skill-icon.cs-bg {
  background: linear-gradient(135deg, #30cfd0, #330867);
}

.skill-icon.html-bg {
  background: linear-gradient(135deg, #e44d26, #f16529);
}

.skill-icon.sql-bg {
  background: linear-gradient(135deg, #00758f, #005f73);
}

.skill-icon.sf-bg {
  background: linear-gradient(135deg, #00a1e0, #0176d3);
}

.skill-content {
  flex: 1;
}

.skill-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #16325c;
}

.skill-category {
  margin: 0 0 0.75rem 0;
  font-size: 0.75rem;
  color: #706e6b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.skill-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #0176d3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.skill-link:hover {
  color: #014486;
  text-decoration: underline;
}

/* Contact section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-info h3,
.contact-form-container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #16325c;
  margin: 0 0 1.5rem 0;
}

.contact-form-container {
  background: #fff;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  padding: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #16325c;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0176d3;
  box-shadow: 0 0 0 3px rgba(1, 118, 211, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
  color: #706e6b;
  font-style: italic;
}

.action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Technologies section */
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tech-card {
  background: #fff;
  border: 1px solid var(--stone-300);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.tech-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon svg {
  width: 36px;
  height: 36px;
}

.tech-icon.html-tech {
  background: linear-gradient(135deg, #e34c26, #f06529);
  color: #fff;
}

.tech-icon.css-tech {
  background: linear-gradient(135deg, #264de4, #2965f1);
  color: #fff;
}

.tech-icon.js-tech {
  background: linear-gradient(135deg, #f0db4f, #f7df1e);
  color: #000;
}

.tech-icon.git-tech {
  background: linear-gradient(135deg, #f34f29, #f05032);
  color: #fff;
}

.tech-icon.github-tech {
  background: linear-gradient(135deg, #24292e, #000);
  color: #fff;
}

.tech-icon.java-tech {
  background: linear-gradient(135deg, #5382a1, #f89820);
  color: #fff;
}

.tech-icon.angular-tech {
  background: linear-gradient(135deg, #dd0031, #c3002f);
  color: #fff;
}

.tech-icon.sql-tech {
  background: linear-gradient(135deg, #00758f, #336791);
  color: #fff;
}

.tech-icon.dotnet-tech {
  background: linear-gradient(135deg, #512bd4, #68217a);
  color: #fff;
}

.tech-icon.salesforce-tech {
  background: linear-gradient(135deg, #00a1e0, #0176d3);
  color: #fff;
}

.tech-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.tech-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #16325c;
}

.tech-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

.record-sheet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.record-card.simple {
  background: var(--white);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-md);
  padding: 16px;
}

.bullet-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.list-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.list-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.65rem;
  margin: 0;
  color: var(--muted);
}

.list-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.list-title h2 {
  margin: 4px 0;
  font-size: 1.45rem;
}

.list-updated {
  font-size: 0.85rem;
  color: var(--muted);
}

.list-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.action-btn {
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  border: 1px solid var(--stone-300);
  background: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.action-btn.primary {
  background: var(--sky-700);
  border-color: var(--sky-700);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(12, 47, 88, 0.2);
}

.action-btn.ghost {
  background: var(--stone-100);
}

.record-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border: 1px dashed var(--stone-300);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  background: var(--stone-100);
}

.pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--stone-300);
  background: var(--white);
  font-size: 0.85rem;
  color: var(--muted);
}

.pill.active {
  background: var(--lime-500);
  border-color: var(--lime-700);
  color: var(--sky-900);
}

.toolbar-actions {
  display: flex;
  gap: 8px;
}

.table-wrapper {
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table thead {
  background: var(--stone-100);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--stone-300);
  vertical-align: top;
}

.data-table tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.data-table strong {
  display: block;
  font-size: 0.95rem;
  color: var(--sky-900);
}

.meta {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.tag,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag.positive,
.status-chip.positive {
  background: rgba(58, 160, 57, 0.15);
  color: #287a23;
}

.tag.warning,
.status-chip.warning {
  background: rgba(255, 154, 37, 0.2);
  color: #8c4300;
}

.tag.info,
.status-chip.info {
  background: rgba(31, 70, 119, 0.14);
  color: var(--sky-700);
}

.tag.neutral {
  background: rgba(95, 109, 122, 0.15);
  color: var(--muted);
}

.record-card {
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fcfdfb;
}

.record-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--stone-300);
  padding-bottom: 16px;
}

.record-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-content {
  padding: 0 0 1rem 0;
  line-height: 1.6;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-content p {
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.detail-field {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-300);
  background: var(--white);
}

.field-label {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.detail-field p {
  margin: 6px 0 0;
}

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

.path-step {
  flex: 1;
  min-width: 110px;
  text-align: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-300);
  font-size: 0.78rem;
  color: var(--muted);
}

.path-step.done {
  background: var(--lime-200);
  border-color: var(--lime-700);
  color: var(--sky-900);
}

.path-step.current {
  background: rgba(31, 70, 119, 0.12);
  border-color: var(--sky-700);
  color: var(--sky-700);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.quick-links article {
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: var(--white);
}

.quick-links h4 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--sky-900);
}

.count {
  font-size: 1.4rem;
  margin: 6px 0;
  font-weight: 700;
}

.tab-panel > .summary-card,
.tab-panel > .related-links {
  grid-column: 1 / -1;
}

.summary-card {
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-row.header-row {
  background: #f3f3f3;
  padding: 0.5rem 1.5rem;
}

.summary-row.details-row {
  background: #fff;
  padding: 1.5rem;
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
}

.summary-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.summary-info {
  display: flex;
  flex-direction: column;
}

.summary-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.6rem;
  margin: 0 0 0.15rem 0;
  color: var(--muted);
}

.summary-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #16325c;
}

.summary-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-field .field-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  color: var(--muted);
}

.summary-field strong {
  font-size: 0.875rem;
  color: var(--sky-900);
}

.summary-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Legacy classes for backward compatibility */
.summary-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.summary-basic {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--stone-300);
  background: #fff;
  color: #a01665;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 8px;
  text-transform: none;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.follow-btn:hover {
  background: #f9f9f9;
  border-color: #a01665;
}

.follow-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.follow-icon::before {
  content: '+';
  font-size: 1.2rem;
  color: #a01665;
  line-height: 1;
}

.object-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #1e7dd9, #5eb0ff);
  color: #fff;
}

.object-icon.icon-account::before {
  content: '🏢';
  font-size: 1.6rem;
}

.object-icon.icon-briefcase::before {
  content: '💼';
  font-size: 1.6rem;
}

.object-icon.icon-projects::before {
  content: '🚀';
  font-size: 1.6rem;
}

.object-icon.icon-skills::before {
  content: '🎯';
  font-size: 1.6rem;
}

.object-icon.icon-tech::before {
  content: '⚡';
  font-size: 1.6rem;
}

.object-icon.icon-contact::before {
  content: '👤';
  font-size: 1.6rem;
}

.object-icon.xl {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}

.related-links {
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 16px 20px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-links__header {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--muted);
}

.info-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--stone-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.related-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.related-links article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  min-width: 160px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.related-links article.quick-link-btn {
  cursor: pointer;
}

.related-links article.quick-link-btn:hover {
  background: var(--stone-100);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.related-links article:hover {
  background: var(--stone-100);
}

.related-links article.quick-link-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

.related-links article.quick-link-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.related-links article p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--sky-900);
}

.related-links article strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.link-icon.contact {
  background: #2b90ef;
  content: '👥';
}

.link-icon.cases {
  background: #ec6c76;
}

.link-icon.opps {
  background: #f5a623;
}

.link-icon.projects {
  background: #6b60ff;
}

.link-icon.skills {
  background: #00a78e;
}

.link-icon.contact::before {
  content: '👥';
}

.link-icon.cases::before {
  content: '📁';
}

.link-icon.opps::before {
  content: '💼';
}

.link-icon.projects::before {
  content: '🚀';
}

.link-icon.skills::before {
  content: '🎖️';
}

.app-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .console-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Prevenir overflow horizontal */
  body {
    overflow-x: hidden;
  }
  
  .console-shell {
    padding: 12px 12px 60px;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .console-header {
    padding: 12px 16px;
  }
  
  /* Asegurar que tab-panel y todo su contenido no desborde */
  .tab-panel,
  .tab-panel.active {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .tab-panel > * {
    max-width: 100%;
  }
  
  .header-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .header-brand h1 {
    font-size: 1.2rem;
  }
  
  .org-label {
    font-size: 0.7rem;
  }
  
  .header-brand .inline-search {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .search input {
    width: 100%;
    font-size: 0.9rem;
  }
  
  .header-icons {
    width: 100%;
    justify-content: space-between;
  }
  
  .action-icons {
    flex: 1;
    justify-content: flex-end;
  }
  
  /* Tabs responsive con scroll horizontal */
  .console-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox - mostrar scrollbar delgada */
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    padding-bottom: 4px;
    position: relative;
  }
  
  .console-tabs::-webkit-scrollbar {
    height: 3px;
  }
  
  .console-tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .console-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  
  .console-tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }
  
  .console-tabs .tab {
    flex-shrink: 0;
    min-width: auto;
    padding: 10px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  /* Path steps responsive */
  .path-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
    height: auto;
    min-height: 42px;
    padding: 4px 0;
  }
  
  .path-step {
    padding: 8px 0.75rem 8px 0.5rem;
    font-size: 0.7rem;
    min-width: 80px;
    flex: 0 0 auto;
  }
  
  .path-step__label {
    font-size: 0.7rem;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
  }
  
  .path-step__marker {
    margin-right: 4px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .path-check {
    width: 10px;
    height: 10px;
  }
  
  /* Summary card responsive */
  .summary-card {
    padding: 16px;
    max-width: 100%;
  }
  
  .summary-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .summary-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  
  .follow-btn {
    flex: 1;
    justify-content: center;
  }
  
  .summary-title {
    font-size: 1rem;
    word-break: break-word;
  }
  
  .summary-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Resumen lateral (columna derecha) */
  .summary-col {
    width: 100%;
    max-width: 100%;
  }
  
  .summary-section {
    max-width: 100%;
  }
  
  .summary-section p,
  .summary-section ul,
  .summary-section li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Details section responsive */
  .details-section {
    max-width: 100%;
    overflow: hidden;
  }
  
  .details-content {
    max-width: 100%;
  }
  
  /* Record table responsive */
  .record-table {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  
  .record-field {
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .record-field strong {
    word-break: break-word;
  }
  
  /* Related list responsive */
  .related-list-quick-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .link-btn {
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
    min-height: 44px;
    padding: 8px 12px;
  }
  
  .link-icon {
    flex-shrink: 0;
  }
  
  .link-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Timeline responsive */
  .experience-timeline {
    padding-left: 0;
  }
  
  .experience-item {
    padding-left: 24px;
  }
  
  .experience-item::before {
    left: 4px;
  }
  
  .experience-item::after {
    left: 0;
    width: 12px;
    height: 12px;
  }
  
  /* Project cards responsive */
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card-large {
    flex-direction: column;
  }
  
  .project-image,
  .project-icon {
    width: 100%;
    height: 200px;
  }
  
  /* Skills grid responsive */
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .skill-card {
    padding: 16px;
  }
  
  /* Tech grid responsive */
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact form responsive */
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--stone-200);
    padding-bottom: 24px;
  }
  
  /* Notification panel responsive */
  .notification-panel {
    width: calc(100vw - 24px);
    max-width: 420px;
    right: -12px;
  }
  
  /* Quick switcher responsive */
  .quick-switcher-dropdown {
    width: calc(100vw - 24px);
    right: -12px;
  }
}

@media (max-width: 480px) {
  .console-shell {
    padding: 8px 8px 60px;
  }
  
  .console-header {
    padding: 12px;
  }
  
  .header-brand h1 {
    font-size: 1rem;
    word-break: break-word;
  }
  
  .waffle {
    width: 32px;
    height: 32px;
  }
  
  .icon-btn {
    width: 32px;
    height: 32px;
  }
  
  .lang-btn {
    font-size: 1.2rem;
  }
  
  /* Asegurar que todo el contenido se ajuste en pantallas muy pequeñas */
  * {
    max-width: 100%;
  }
  
  img, svg, video {
    max-width: 100%;
    height: auto;
  }
  
  /* Path más compacto */
  .path-step {
    min-width: 60px;
    padding: 6px 0.5rem;
  }
  
  .path-step__label {
    font-size: 0.65rem;
  }
  
  /* Ocultar labels de path completamente en móviles muy pequeños */
  .path-step__label {
    display: none;
  }
  
  .path-step {
    padding: 0 0.5rem;
  }
  
  /* Tabs más pequeños */
  .console-tabs .tab {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  /* Summary card más compacto */
  .summary-card {
    padding: 12px;
  }
  
  .summary-title {
    font-size: 0.9rem;
  }
  
  .summary-count {
    font-size: 1.5rem;
  }
  
  /* Botones más pequeños */
  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  /* Tablas más compactas */
  .list-table th,
  .list-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  
  /* Experience items más compactos */
  .experience-header h3 {
    font-size: 1rem;
  }
  
  .date-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  /* Filtros de skills en columna */
  .skills-filters {
    flex-direction: column;
    gap: 8px;
  }
  
  .filter-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .list-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== PATH (Ruta de progreso) ========== */
.path-container {
  display: flex;
  align-items: stretch;
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  gap: 8px;
  height: 42px;
  grid-column: 1 / -1;
  width: 100%;
}

.path-step {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem 0 1.5rem;
  background: #f3f3f3;
  transition: background 0.2s, transform 0.1s;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  cursor: pointer;
}

.path-step:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.path-step:active {
  transform: translateY(0);
}

.path-step:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  padding-left: 1rem;
}

.path-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
  padding-right: 1rem;
}

.path-step.complete {
  background: #75b947;
  color: #fff;
}

.path-step.current {
  background: #3d3d3d;
  color: #fff;
}

.path-step.incomplete {
  background: #e8e8e8;
  color: #706e6b;
}

.path-step__marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.path-step.complete .path-step__marker {
  background: rgba(255, 255, 255, 0.3);
}

.path-step.current .path-step__marker {
  background: #fff;
}

.path-step.incomplete .path-step__marker {
  background: #c9c7c5;
}

.path-check {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.path-step__label {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}

