.hero-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.062745098), transparent 35%), var(--surface);
  box-shadow: var(--shadow), 0 0 70px var(--glow);
}

.hero-eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: var(--surface-2);
  font-family: var(--code);
  font-size: 0.9rem;
}

.hero-title {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.12em;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--dark-gray);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-stats,
.category-grid,
.profile-grid,
.writeup-flow,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.hero-stat,
.category-card,
.profile-card,
.flow-card,
.contact-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--rounded);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
  text-align: left;
  overflow: hidden;
}

.hero-stat::before,
.category-card::before,
.profile-card::before,
.flow-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 20px var(--glow);
}

.hero-stat strong {
  display: block;
  color: var(--primary);
  font-family: var(--code);
  font-size: 1.35rem;
}

.hero-stat span,
.category-card p,
.profile-card p,
.flow-card p,
.contact-card p {
  color: var(--dark-gray);
}

.category-card h3,
.profile-card h3,
.flow-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--secondary);
}

.category-card .icon,
.profile-card .icon,
.flow-card .icon,
.contact-card .icon {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1.5rem;
}

.profile-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 26px auto 10px;
}

.profile-logo {
  width: min(320px, 70vw);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #000;
  box-shadow: 0 0 60px var(--glow);
}

.terminal-box {
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: var(--rounded);
  background: #050608;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
}

.terminal-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #0c1016;
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 12px var(--glow);
}

.terminal-content {
  padding: 18px 20px;
  color: #d8dee8;
  font-family: var(--code);
  white-space: pre-wrap;
}

.terminal-content .prompt {
  color: var(--primary);
}

.ctf-note {
  margin: 28px 0;
  padding: 18px 22px;
  border: 1px dashed var(--primary);
  border-radius: var(--rounded);
  background: color-mix(in srgb, var(--primary), transparent 90%);
  color: var(--dark-gray);
  text-align: left;
}

@media (max-width: 850px) {
  .hero-stats,
  .category-grid,
  .profile-grid,
  .writeup-flow,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    padding: 20px;
  }
}

/*# sourceMappingURL=oxucl.css.map */