.hero-panel {
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(214, 162, 74, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0)),
    rgba(14, 24, 31, 0.86);
  border: 1px solid rgba(214, 162, 74, 0.2);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-blue-soft);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  margin-bottom: 1rem;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 3rem);
  position: relative;
}

.hero-panel::before {
  background: linear-gradient(180deg, var(--highlight-gold), rgba(45, 109, 143, 0.15));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}

.hero-panel::after {
  background: rgba(255, 255, 255, 0.045);
  content: "";
  height: 1px;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 0.72rem;
}

.eyebrow,
.section-heading span {
  color: var(--highlight-gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-copy {
  align-self: center;
  padding-left: 0.4rem;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  color: var(--light-text);
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 1.2rem;
  max-width: 820px;
}

.hero-copy p {
  color: var(--muted-text);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 740px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.hero-actions .btn {
  border-radius: var(--radius-card);
  font-weight: 800;
  padding: 0.8rem 1.05rem;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--highlight-gold), #efc269);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ink);
}

.hero-actions .btn-outline-secondary {
  border-color: rgba(244, 247, 248, 0.25);
  color: var(--light-text);
}

.hero-profile {
  align-content: start;
  background:
    linear-gradient(145deg, rgba(214, 162, 74, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    rgba(12, 22, 29, 0.72);
  border: 1px solid rgba(214, 162, 74, 0.2);
  border-radius: var(--radius-card);
  color: var(--light-text);
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  position: relative;
  z-index: 1;
}

.hero-profile h2 {
  color: var(--highlight-gold);
  font-weight: 850;
  margin-bottom: 0.35rem;
}

.hero-profile p {
  color: var(--muted-text);
  line-height: 1.55;
  margin-bottom: 0;
}

.hero-img {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  border: 1px solid rgba(214, 162, 74, 0.35);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1rem 0 1.5rem;
}

.proof-grid div {
  background:
    linear-gradient(145deg, rgba(214, 162, 74, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0)),
    rgba(14, 24, 31, 0.82);
  border: 1px solid rgba(214, 162, 74, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.proof-grid div::before {
  background: linear-gradient(180deg, var(--highlight-gold), rgba(45, 109, 143, 0.15));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.proof-grid strong {
  color: var(--highlight-gold);
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.proof-grid span {
  color: var(--muted-text);
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-heading h3 {
  color: var(--light-text);
  font-weight: 850;
  margin-bottom: 1.2rem;
}

.timeline-feed {
  margin: auto;
  max-width: 760px;
}

.timeline-entry {
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(18, 31, 40, 0.76);
  border: 1px solid rgba(244, 247, 248, 0.08);
  border-left: 4px solid var(--highlight-gold);
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: var(--radius-card);
  opacity: 0;
  transform: translateY(10px);
  animation: timelineIn 0.5s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-entry:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.timeline-icon {
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border-radius: var(--radius-card);
  background: rgba(214, 162, 74, 0.14);
  border: 1px solid rgba(214, 162, 74, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 850;
  color: var(--highlight-gold);
  flex-shrink: 0;
}

.timeline-text {
  color: var(--muted-text);
  transition: max-height 0.3s ease;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.timeline-text strong {
  color: var(--light-text);
  display: block;
  margin-bottom: 4px;
  font-weight: 850;
}

.col-md-4.animated-section {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.col-md-4.animated-section .card-section {
  margin-bottom: 0 !important;
  padding: 0.82rem;
}

.col-md-4.animated-section .card-section h4,
.col-md-4.animated-section .card-section h5 {
  color: var(--highlight-gold);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.col-md-4.animated-section .card-section h4 {
  margin-bottom: 0.7rem !important;
}

.col-md-4.animated-section .card-section p,
.col-md-4.animated-section .card-section strong {
  color: var(--light-text);
}

.col-md-4.animated-section .card-section .badge {
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
}

.discord-card-header {
  align-items: center;
  display: flex;
  gap: 0.52rem;
  justify-content: space-between;
  margin-bottom: 0.68rem;
  position: relative;
  z-index: 1;
}

.discord-guild-link {
  align-items: center;
  color: var(--light-text);
  display: flex;
  min-width: 0;
  max-width: calc(100% - 74px);
}

.discord-guild-link h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.join-button {
  align-items: center;
  background:
    linear-gradient(135deg, var(--highlight-gold), #f0c66e);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(214, 162, 74, 0.16);
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 30px;
  padding: 0.5rem 0.74rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.join-button:hover {
  background:
    linear-gradient(135deg, #f3cf80, var(--highlight-gold));
  box-shadow: 0 14px 24px rgba(214, 162, 74, 0.24);
  color: var(--ink);
  transform: translateY(-2px);
}

.discord-presence-row {
  align-items: center;
  display: flex;
  gap: 0.58rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.presence-bubble {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 0.42rem;
  line-height: 1;
  min-height: 28px;
  padding: 0.42rem 0.62rem;
}

.presence-bubble span {
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}

.presence-bubble.is-online {
  background: rgba(115, 167, 143, 0.16);
  border: 1px solid rgba(115, 167, 143, 0.36);
  color: #b9e1cd;
}

.presence-bubble.is-online span {
  background: #75d69c;
  box-shadow: 0 0 0 4px rgba(117, 214, 156, 0.12), 0 0 14px rgba(117, 214, 156, 0.6);
}

.presence-bubble.is-offline {
  background: rgba(162, 79, 69, 0.16);
  border: 1px solid rgba(162, 79, 69, 0.38);
  color: #f0bbb4;
}

.presence-bubble.is-offline span {
  background: #d96d63;
  box-shadow: 0 0 0 4px rgba(217, 109, 99, 0.12);
}

#status-list {
  display: grid;
  gap: 0.42rem;
  position: relative;
  z-index: 1;
}

.service-status-row {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid rgba(244, 247, 248, 0.08);
  border-radius: var(--radius-card);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  min-height: 34px;
  padding: 0.32rem 0.42rem 0.32rem 0.56rem;
}

.service-name-wrap {
  align-items: center;
  display: flex;
  min-width: 0;
}

.service-name-wrap strong {
  color: var(--light-text);
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-bubble {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.4rem;
  line-height: 1;
  min-height: 24px;
  padding: 0.34rem 0.56rem;
}

.service-bubble span {
  border-radius: 50%;
  display: block;
  height: 7px;
  width: 7px;
}

.service-bubble.is-online {
  background: rgba(115, 167, 143, 0.16);
  border: 1px solid rgba(115, 167, 143, 0.34);
  color: #b9e1cd;
}

.service-bubble.is-online span {
  background: #75d69c;
  box-shadow: 0 0 0 4px rgba(117, 214, 156, 0.1), 0 0 12px rgba(117, 214, 156, 0.52);
}

.service-bubble.is-offline {
  background: rgba(162, 79, 69, 0.16);
  border: 1px solid rgba(162, 79, 69, 0.36);
  color: #f0bbb4;
}

.service-bubble.is-offline span {
  background: #d96d63;
  box-shadow: 0 0 0 4px rgba(217, 109, 99, 0.1);
}

.col-md-4.animated-section .card-section img.rounded,
.col-md-4.animated-section .card-section img.rounded-circle {
  border: 1px solid rgba(214, 162, 74, 0.35);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.discord-card-header + .discord-presence-row {
  border-top: 1px solid rgba(244, 247, 248, 0.08);
  padding-top: 0.62rem;
}

.discord-presence-row strong {
  font-size: 0.9rem;
}

.discord-presence-row img.rounded-circle {
  height: 34px;
  width: 34px;
}

.discord-card-header img.rounded {
  height: 34px;
  width: 34px;
}

.discord-card-header h5 {
  font-size: 0.82rem;
}

.col-md-4.animated-section .card-section:has(.discord-card-header) {
  align-self: start;
}

.col-md-4.animated-section .card-section:has(#status-list) {
  align-self: start;
  padding-bottom: 0.72rem;
}

@keyframes timelineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-profile {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 768px) {
  .hero-panel {
    padding: 1.25rem;
  }

  .hero-profile,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-img {
    max-width: 220px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
